Files @ 3722152897ec
Branch filter:

Location: majic-ansible-roles/roles/backup_client/molecule/default/converge.yml

branko
MAR-218: Disable Ansible lints for prefixed role variable names:

- At this point in time, it does not make much sense to introduce
prefixing and breaking every single role invocation.
- Might be worth revisting down the line, although it would require
understanding a bit more clearly if prefixing has any kind of
special logic handling or it's pure guidelines.
---

- name: Converge
  hosts: parameters-mandatory,parameters-optional
  become: true
  roles:
    - backup_client

# Deploy a dummy pre-backup script for testing purposes.
- name: Converge, test fixtures
  hosts: parameters-mandatory,parameters-optional
  become: true
  tasks:

    - name: Deploy pre-backup script
      copy:
        src: tests/data/10-test-pre-backup.sh
        dest: /etc/duply/main/pre.d/10-test-pre-backup.sh
        owner: root
        group: root
        mode: 0700