17 lines
484 B
YAML
17 lines
484 B
YAML
---
|
|
- name: Création du script de sauvegarde quotidienne
|
|
ansible.builtin.template:
|
|
src: backup-daily.sh.j2
|
|
dest: "{{ backup_script_path }}/minecraft-backup-daily.sh"
|
|
owner: root
|
|
group: root
|
|
mode: '0755'
|
|
|
|
- name: Configuration cron pour sauvegarde quotidienne
|
|
ansible.builtin.cron:
|
|
name: "Minecraft Daily Backup"
|
|
minute: "0"
|
|
hour: "2"
|
|
job: "{{ backup_script_path }}/minecraft-backup-daily.sh"
|
|
user: "{{ minecraft_user }}"
|
|
state: present |