mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-01-23 20:39:26 +00:00
11 lines
437 B
YAML
11 lines
437 B
YAML
- hosts: containers
|
|
name: Sync mailu
|
|
ignore_unreachable: false
|
|
tasks:
|
|
- name: Syncing mailu
|
|
ansible.builtin.shell: 'chown -R admin. /share/docker_data/mailu2'
|
|
become: true
|
|
when: inventory_hostname in groups['raspberry']
|
|
- name: Syncing mailu
|
|
ansible.builtin.shell: 'rsync -ra /share/docker_data/mailu2/* admin@192.168.77.246:/share/docker_data/mailu2'
|
|
when: inventory_hostname in groups['nas'] |