I have been fighting this issue for some time now, I cannot get my HA installation running on a linux box via VirtualBox to accept the following so that I can save camera images to a share located on the host machine. I cannot figure out for the life of me why I continue to get the Configuration errors
YAML below:
default_config:
homeassistant:
allowlist_external_dirs:
- ‘/Backups’
Load frontend themes from the themes folder
frontend:
themes: !include_dir_merge_named themes
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
I have tried all sorts of variations, using " ", ’ ', and with no quotation marks, as well as with and without the /. I have also tried variations of
- ‘/home/username/Backups’
- ‘/username/Backups’
- ‘ipaddress/Backups’
The HA installation has Backups and Backups/Garage as network storage within the Storage tab in settings. I am fairly certain that the indentation is correct, as
- ‘/mnt’
is accepted.
Am I experiencing read/write permission issues, or do I need to add entries into the HA fstab? All of the posts and vids I have researched all point to indentation errors, but if that is the case, why does /mnt work and the others do not? Any and all help would be appreciated!