I recently added the usps component to my 0.65.4 version of HA. I normally use the Call Service operation in the web GUI to restart HA but this time I decided to use the command line:
sudo systemctl start [email protected]
I found that it never came up. The only thing in the log file was 2 lines that said that the august component was not recognized. I have an august door lock and replaced the wink component version with august component after the 0.64 release and it’s been working OK since.
So, now I decided to do a manual check of the config file with hass:
homeassistant@hassbian:~/.homeassistant $ hass --script check_config
INFO:homeassistant.util.package:Attempting install of colorlog==3.1.2
Testing configuration at /home/homeassistant/.homeassistant
2018-03-22 19:08:31 INFO (Thread-2) [homeassistant.config] Upgrading configuration directory from 0.65.4 to 0.63.3
2018-03-22 19:08:31 INFO (Thread-2) [homeassistant.config] Migrating old system configuration files to new locations
2018-03-22 19:08:31 INFO (MainThread) [homeassistant.setup] Setting up recorder
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up mqtt
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setup of domain recorder took 1.1 seconds.
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up http
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setup of domain mqtt took 0.0 seconds.
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setup of domain http took 0.0 seconds.
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up history
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up api
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up system_log
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up websocket_api
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setup of domain history took 0.0 seconds.
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setup of domain api took 0.0 seconds.
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setup of domain system_log took 0.0 seconds.
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setup of domain websocket_api took 0.0 seconds.
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up frontend
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setup of domain frontend took 0.0 seconds.
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up scene
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up usps
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up ecobee
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up python_script
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up ifttt
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up discovery
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up zone
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up notify
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up map
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up updater
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up lutron_caseta
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up binary_sensor
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up sensor
2018-03-22 19:08:33 INFO (MainThread) [homeassistant.setup] Setting up sun
2018-03-22 19:08:33 ERROR (MainThread) [homeassistant.loader] Unable to find component august
2018-03-22 19:08:33 ERROR (MainThread) [homeassistant.setup] Setup failed for august: Component not found.
One of the first lines talks about “upgrading” the configuration from 65 to 63. What is going on here?
Thanks for any help you can offer.