I have recently done some changes to my zoneminder software which needed to be reflected in my HA configuration file, however this has caused HA to start into safe mode.
ERROR (MainThread) [homeassistant.bootstrap] Failed to parse configuration.yaml: in "/config/configuration.yaml", line 28, column 14: Unable to read file /config/customize.yamlyaml.. Activating safe mode
My configuration is as follows:
# Loads default set of integrations. Do not remove.
default_config: ~
wake_on_lan: ~
# Text to speech
tts:
- platform: google_translate
http:
server_port: 8563
zoneminder:
- host: 192.168.1.105:8095
path: /
path_zms: /cgi-bin/nph-zms
username: WoahUsername
password: WoahPassword
camera:
- platform: zoneminder
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
homeassistant:
customize: !include customize.yaml
When I initally updated the configuration and restarted HA, the end of the configuration file was updated:
homeassistant:
customize: !include customize.yamlyaml
I first tried fixing this by simply correcting this line, and then uploading the configuration back to the server. Despite this, restarting HA or running the configuration test messes up the configuration again, putting HA back into safemode.
I am running HA in a docker container.