Hi I tired to moved my scripts to a folder and I keep getting below error when a reboot hassio and reloaded scripts. I have also attached a example script, which was working before within configuration under script:
.
Error:
remove:Group ‘all_scripts’ doesn’t exist!
configuration.yaml
script: !include_dir_merge_list script
script/light.yaml
flash_lights:
alias: Flash Lights
sequence:
- service: homeassistant.turn_on
data:
entity_id:
- light.bedroom_light
- delay:
seconds: 1
- service: homeassistant.turn_off
data:
entity_id:
- light.bedroom_light
- service: script.turn_on
data:
entity_id: script.light_loop
light_loop:
alias: Light flash loop
sequence:
- delay:
seconds: 1
- service: script.turn_on
data:
entity_id: script.flash_lights
light_loop_kill:
alias: Kill flashing lights
sequence:
service: script.turn_off
data:
entity_id: script.light_loop