notification/tasks/centos_units.yml

21 lines
543 B
YAML
Raw Normal View History

2023-02-18 09:22:41 +03:00
---
- 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"