fdgh
This commit is contained in:
parent
9942d44b0e
commit
17d07a3c0f
4 changed files with 17 additions and 2 deletions
|
@ -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?
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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 %}
|
||||
|
|
5
roles/mgrote_rsync/templates/ssh-config.j2
Normal file
5
roles/mgrote_rsync/templates/ssh-config.j2
Normal 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
|
Loading…
Reference in a new issue