Remove command from FreeBSD Reboot job. It seems to start on its own.

This commit is contained in:
Hyperling 2021-03-20 13:21:26 -05:00
parent 33e43aab3d
commit 15eaefa3a6

View File

@ -163,6 +163,6 @@
state: present
disabled: no
loop:
- { "name": "Telegraf Start Job", "command": "# Deprecated", "freq": "reboot"}
- { "name": "Telegraf Reboot Job", "command": "{{ telegraf_cmd }}", "freq": "reboot"}
- { "name": "Telegraf Keep-Alive Job", "command": "{{ telegraf_restart }}", "freq": "hourly"}
- { "name": "Telegraf Start Job" , "freq": "reboot", "command": "# Deprecated",}
- { "name": "Telegraf Reboot Job" , "freq": "reboot", "command": "{{ telegraf_cmd }}"}
- { "name": "Telegraf Keep-Alive Job", "freq": "hourly", "command": "{{ (ansible_system == 'Linux') | ternary(telegraf_restart, '# FreeBSD is smart.') }}"}