remove syncoid, switch to rsync #221

Merged
mg merged 132 commits from sanoid_weg into master 2024-10-31 12:01:46 +01:00
5 changed files with 21 additions and 21 deletions
Showing only changes of commit f5554cd73e - Show all commits

View file

@ -1,7 +1,4 @@
---
### mgrote_rsync
rsync_host_role: destination
### mgrote_netplan
netplan_configure: false

View file

@ -1,7 +1,4 @@
---
### mgrote_rsync
rsync_host_role: source
### mgrote_netplan
netplan_configure: false

View file

@ -167,3 +167,6 @@ sanoid_datasets:
recursive: 'no' # noqa yaml[truthy]
snapshots: true
template: '14tage'
### mgrote_rsync
rsync_host_role: destination

View file

@ -9,7 +9,6 @@
## hdd_data "neu"
### sudo zpool create -o ashift=12 -o feature@encryption=enabled -O encryption=on -O keylocation=prompt -O keyformat=passphrase hdd_data /dev/disk/by-id/ata-ST18000NM003D-3DL103_ZVTBSAYS
# mgrote.zfs_manage_datasets
### mgrote_zfs_extra
# Variablen für mgrote.zfs_health/trim/scrub/zed/arc_mem/ sind zusammengefasst unter zfs_extra_*
@ -229,6 +228,7 @@ pve_pbs_datastore:
fingerprint: "7F:AC:54:75:1C:33:55:84:1E:1E:3A:15:5A:5E:AF:79:33:C9:D4:E1:C0:A0:1C:0D:9E:6A:EA:82:F9:27:57:79"
### mgrote_sync
rsync_host_role: source
rsync_mirror_dirs: # bei Src+Dest KEIN "/" am Ende
- src: /hdd_data/tmp
dest: "{{ rsync_mirror_user }}@pbs.mgrote.net:/backup/pve5/tmp"

View file

@ -1,18 +1,21 @@
---
- name: Include user tasks
- name: Block
when: ("'source' in rsync_host_role") or ("'destination' in rsync_host_role")
block:
- name: Include user tasks
ansible.builtin.include_tasks: user.yml
- name: Ensure packages are present
- name: Ensure packages are present
become: true
ansible.builtin.package:
name:
- rsync
state: present
- name: Include source tasks
- name: Include source tasks
ansible.builtin.include_tasks: source.yml
when: "'source' in rsync_host_role"
- name: Include destination tasks
- name: Include destination tasks
ansible.builtin.include_tasks: destination.yml
when: "'destination' in rsync_host_role"