Update command_line notify component configuration (#7543)

This commit is contained in:
Klaas Schoute 2018-11-17 11:40:45 +01:00 committed by Fabian Affolter
parent afac3b3e30
commit fb13b0ddfc

View File

@ -24,9 +24,16 @@ notify:
command: "espeak -vmb/mb-us1"
```
Configuration variables:
- **name** (*Optional*): Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`.
- **command** (*Required*): The action to take.
{% configuration %}
name:
description: Setting the optional parameter `name` allows multiple notifiers to be created. The notifier will bind to the service `notify.NOTIFIER_NAME`.
required: false
default: notify
type: string
command:
description: The action to take.
required: true
type: string
{% endconfiguration %}
To use notifications, please see the [getting started with automation page](/getting-started/automation/).