Files @ 8f33126c7555
Branch filter:

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

branko
MAR-119: Updated all test playbooks to mark apt cache update as always idempotent (since it does not play role in actual role idempotence).
---

- name: Configure backup patterns
  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
  include: ../handlers/main.yml
  when: "handlers | default(False) | bool() == True"
  tags:
    - handlers