notification/tasks/centos_units.yml
2023-12-24 22:51:07 +03:00

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"