mirror of
https://github.com/auricom/home-cluster.git
synced 2025-10-03 01:00:54 +02:00
14 lines
262 B
YAML
14 lines
262 B
YAML
---
|
|
- name: backup | copy script
|
|
ansible.builtin.copy:
|
|
src: backup.bash
|
|
dest: /storage/backup.bash
|
|
mode: 0755
|
|
|
|
- name: backup | crontab
|
|
ansible.builtin.cron:
|
|
name: "daily backup"
|
|
minute: "14"
|
|
hour: "4"
|
|
job: "/storage/backup.bash"
|