Simplify template defaults in script data
This commit is contained in:
@ -274,7 +274,7 @@ script:
|
||||
sequence:
|
||||
- service: script.speech_engine
|
||||
data:
|
||||
who: "{{ who if who is defined else 'common' }}"
|
||||
who: "{{ who|default('common') }}"
|
||||
message: !include ../templates/speech/daily_briefing.yaml
|
||||
- service: input_boolean.turn_on
|
||||
target:
|
||||
@ -285,7 +285,7 @@ script:
|
||||
sequence:
|
||||
- service: script.speech_engine
|
||||
data:
|
||||
who: "{{ who if who is defined else 'common' }}"
|
||||
who: "{{ who|default('common') }}"
|
||||
message: !include ../templates/speech/nightly_briefing.yaml
|
||||
- service: input_boolean.turn_on
|
||||
target:
|
||||
@ -296,7 +296,7 @@ script:
|
||||
sequence:
|
||||
- service: script.speech_engine
|
||||
data:
|
||||
who: "{{ who if who is defined else 'common' }}"
|
||||
who: "{{ who|default('common') }}"
|
||||
message: !include ../templates/speech/morning_briefing.yaml
|
||||
- service: input_boolean.turn_on
|
||||
target:
|
||||
@ -307,7 +307,7 @@ script:
|
||||
sequence:
|
||||
- service: script.status_annc
|
||||
data:
|
||||
who: "{{ who if who is defined else 'everywhere' }}"
|
||||
who: "{{ who|default('everywhere') }}"
|
||||
call_dinner_is_ready: 1
|
||||
|
||||
we_are_leaving:
|
||||
@ -315,7 +315,7 @@ script:
|
||||
sequence:
|
||||
- service: script.status_annc
|
||||
data:
|
||||
who: "{{ who if who is defined else 'everywhere' }}"
|
||||
who: "{{ who|default('everywhere') }}"
|
||||
call_we_are_leaving: 1
|
||||
|
||||
server_maintenance_annc:
|
||||
@ -323,7 +323,7 @@ script:
|
||||
sequence:
|
||||
- service: script.status_annc
|
||||
data:
|
||||
who: "{{ who if who is defined else 'everywhere' }}"
|
||||
who: "{{ who|default('everywhere') }}"
|
||||
call_interruption: 1
|
||||
call_server_maintenance: 1
|
||||
|
||||
@ -411,7 +411,7 @@ script:
|
||||
- alias: "Read the announcement"
|
||||
service: script.speech_engine
|
||||
data:
|
||||
who: "{{ who if who is defined else 'everywhere' }}"
|
||||
who: "{{ who|default('everywhere') }}"
|
||||
message: !include ../templates/speech/birthdays.yaml
|
||||
- alias: "Give time for the announcement to complete"
|
||||
delay:
|
||||
|
Reference in New Issue
Block a user