I am migrating my HA setup from Docker to HAOS on Proxmox. I did the initial migration by copying across my entire config folder from the old Docker host to the HAOS machine. Most things seem to have migrated without any issues, but there is a problem with the file platform that I use to write to a log file in my www folder. The definition is below.
homeassistant:
debug: true
allowlist_external_dirs:
- "/config/"
- "/config/www/"
notify:
- platform: file
name: sensorlog
filename: www/sensorlog.html
timestamp: true
This is not working in HAOS 2024.12.2, and if I try testing it in the Actions tab of Developer tools I don’t get presented with the “sensorlog” option when I type “sensor.” On my Docker install (2024.11.1) I get a dropdown list when I type “sensor.”, which includes “sensorlog”.
I also noticed this in the ha log:
[homeassistant.components.notify] Error setting up platform file
If this component is no longer functional, is there an alternative way of writing to a local file for an HA script/automation?