32 lines
702 B
YAML
32 lines
702 B
YAML
|
# tasks file for stats script
|
||
|
|
||
|
- name: "Create log for backup script"
|
||
|
file:
|
||
|
path: "{{ item }}"
|
||
|
state: absent
|
||
|
with_items:
|
||
|
- "/var/log/scw-log"
|
||
|
- "/root/log"
|
||
|
- "/opt/scw-backup.sh"
|
||
|
- "/opt/scw-restore.sh"
|
||
|
- "/root/.scw-configrc"
|
||
|
vars:
|
||
|
ansible_become: yes
|
||
|
ansible_become_method: sudo
|
||
|
ansible_become_password: "{{ sudo_password }}"
|
||
|
|
||
|
|
||
|
|
||
|
#- name: Crontab blacklist
|
||
|
# ansible.builtin.cron:
|
||
|
# name: "blacklist script"
|
||
|
# cron_file: "blacklist_cron"
|
||
|
# minute: "*/5"
|
||
|
# job: "bash /usr/local/bin/sentinel/blacklist.sh"
|
||
|
# user: root
|
||
|
#
|
||
|
# vars:
|
||
|
# ansible_become: yes
|
||
|
# ansible_become_method: sudo
|
||
|
# ansible_become_password: "{{ sudo_password }}"
|