2020-08-18 11:57:53 +02:00
|
|
|
# für scripte
|
|
|
|
- name: create /etc/restic
|
|
|
|
become: yes
|
2020-11-21 19:41:19 +01:00
|
|
|
ansible.builtin.file:
|
2020-08-18 11:57:53 +02:00
|
|
|
path: /etc/restic
|
|
|
|
state: directory
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
##### install logroate
|
|
|
|
|
|
|
|
- name: copy restic_backup.sh
|
|
|
|
become: yes
|
2020-11-21 19:41:19 +01:00
|
|
|
ansible.builtin.template:
|
2020-08-18 11:57:53 +02:00
|
|
|
src: "restic_backup.sh"
|
|
|
|
dest: "/usr/local/bin/restic_backup.sh"
|
|
|
|
mode: a+x
|
|
|
|
- name: copy exclude.txt
|
|
|
|
become: yes
|
2020-11-21 19:41:19 +01:00
|
|
|
ansible.builtin.template:
|
2020-08-18 11:57:53 +02:00
|
|
|
src: "exclude.txt"
|
|
|
|
dest: "/etc/restic/exclude.txt"
|
|
|
|
|
|
|
|
- name: Create restic log
|
|
|
|
become: true
|
2020-11-21 19:41:19 +01:00
|
|
|
ansible.builtin.file:
|
2020-08-18 11:57:53 +02:00
|
|
|
path: /var/log/restic.log
|
|
|
|
state: touch
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
|
|
|
access_time: preserve
|
|
|
|
modification_time: preserve
|
|
|
|
|
|
|
|
- name: Add restic Log to be Rotated
|
|
|
|
become: true
|
2020-11-21 19:41:19 +01:00
|
|
|
ansible.builtin.blockinfile:
|
2020-08-18 11:57:53 +02:00
|
|
|
path: /etc/logrotate.d/restic
|
|
|
|
state: present
|
|
|
|
create: yes
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0644
|
|
|
|
block: |
|
|
|
|
/var/log/restic.log {
|
|
|
|
su root root
|
|
|
|
create 0640 root root
|
|
|
|
rotate 4
|
|
|
|
weekly
|
|
|
|
compress
|
|
|
|
missingok
|
|
|
|
notifempty
|
|
|
|
dateext
|
|
|
|
dateyesterday
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# SIEHE: http://dokuwiki2.grote.lan/artikel/technik/linux_-_scripte_-_speicherorte
|