fdgh
Some checks failed
ansible-lint / gitleaks (pull_request) Successful in 8s
ansible-lint / Ansible Lint (pull_request) Failing after 1m9s

This commit is contained in:
Michael Grote 2024-10-28 19:18:20 +01:00
parent 9942d44b0e
commit 17d07a3c0f
4 changed files with 17 additions and 2 deletions

View file

@ -7,9 +7,10 @@ rsync_mirror_timer: '*-*-* *:00/5' #(every 5 minutes)
rsync_mirror_private_key: "{{ lookup('viczem.keepass.keepass', 'rsync_mirror_private_key', 'notes') }}"
rsync_mirror_public_key: "{{ lookup('viczem.keepass.keepass', 'rsync_mirror_public_key', 'notes') }}"
rsync_mirror_destination_host: pbs.mgrote.net
rsync_mirror_dirs:
- src: /hdd_data/tmp # slashes beachten
dest: rsync_mirror@pbs.mgrote.net:/backup/pve5/tmp
dest: /backup/pve5/tmp
## todo ssh konfig in datei statt inline?

View file

@ -21,6 +21,15 @@
mode: "0400"
# no_log: true # tido
- name: Ensure SSH-Config is templated
become: true
ansible.builtin.template:
src: ssh-config.j2
dest: "/home/rsync_mirror/.ssh/config"
owner: "{{ rsync_mirror_user }}"
group: "{{ rsync_mirror_user_group }}"
mode: "0400"
- name: Ensure rsync_mirror-Script is templated
become: true
ansible.builtin.template:

View file

@ -2,5 +2,5 @@
{{ file_header | default () }}
{% for item in rsync_mirror_dirs %}
rsync -e "ssh -i /etc/rsync_mirror/.ssh/id_rsync_mirror" --checksum --dry-run --bwlimit={{ rsync_mirror_bw_limit }} --archive --verbose --human-readable --stats --compress --fuzzy --force --delete-after --recursive {{ item.src }} {{ item.dest }}
rsync --checksum --dry-run --bwlimit={{ rsync_mirror_bw_limit }} --archive --verbose --human-readable --stats --compress --fuzzy --force --delete-after --recursive {{ item.src }} {{ rsync_mirror_user }}@{{ rsync_mirror_destination_host }}:{{ item.dest }}
{% endfor %}

View file

@ -0,0 +1,5 @@
### keys
StrictHostKeyChecking=accept-new
Host pbs.mgrote.net
User {{ rsync_mirror_user }}
IdentityFile /etc/rsync_mirror/.ssh/id_rsync_mirror