Files
ansible/roles/trixie_migration/tasks/restore-opt.yml
2026-01-01 15:47:07 +01:00

9 lines
209 B
YAML

- name: /opt wiederherstellen
ansible.builtin.copy:
src: "{{ backup_host_dir }}/opt/"
dest: /opt/
remote_src: yes
mode: preserve
become: true
when: ansible_facts.lsb.codename == "trixie"