Files @ 93d485d7dc7b
Branch filter:

Location: majic-ansible-roles/roles/backup/tasks/main.yml - annotation

branko
MAR-218: Undo removal of explicitly specifying Python interpreter:

- Ansible will produce warnings if the interpreter path is not
specified explicitly.
---

- name: Configure backup patterns
  ansible.builtin.template:
    src: "backup_patterns.j2"
    dest: "/etc/duply/main/patterns/{{ backup_patterns_filename }}"
    owner: root
    group: root
    mode: "0600"
  notify:
    - Assemble Duply include patterns

- name: Explicitly run all handlers
  ansible.builtin.include_tasks: ../handlers/main.yml
  when: "run_handlers | default(False) | bool()"
  tags:
    - handlers