21 lines
543 B
YAML
21 lines
543 B
YAML
|
---
|
||
|
- name: create E-Mail reboot script
|
||
|
template:
|
||
|
src: templates/sendmail-reboot.sh
|
||
|
dest: /etc/init.d/sendmail-reboot.sh
|
||
|
mode: u=rwx,g=rx,o=rx
|
||
|
|
||
|
- name: install E-Mail init script link
|
||
|
shell:
|
||
|
cmd: "chkconfig --add /etc/init.d/sendmail-reboot.sh"
|
||
|
|
||
|
- name: create Telegram reboot script
|
||
|
template:
|
||
|
src: templates/sendtelegram-reboot.sh
|
||
|
dest: /etc/init.d/sendtelegram-reboot.sh
|
||
|
mode: u=rwx,g=rx,o=rx
|
||
|
|
||
|
- name: install Telegram init script link
|
||
|
shell:
|
||
|
cmd: "chkconfig --add /etc/init.d/sendtelegram-reboot.sh"
|