mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 21:57:00 +01:00
14 lines
252 B
YAML
14 lines
252 B
YAML
---
|
|
- name: Create fullBackup.sh
|
|
template:
|
|
src: fullBackup.sh
|
|
dest: /root/fullBackup.sh
|
|
mode: 0700
|
|
- name: Create backup cron job
|
|
cron:
|
|
name: daily backup
|
|
state: present
|
|
minute: 0
|
|
hour: 4
|
|
job: "/root/fullBackup.sh"
|
|
|