No description
  • Shell 86.8%
  • Jinja 13.2%
Find a file
Mark van Huijstee 220f287b93
Merge pull request #9 from de-it-krachten/dev
Update supported platforms & CI (2026-07-23)
2026-07-26 21:53:42 +02:00
.github/workflows Update CI 2026-07-23 14:27:48 +02:00
defaults feat: Add backup scheduling via cron 2026-03-11 22:15:13 +01:00
files fix: Standarize vars.yml 2026-06-07 15:58:31 +02:00
meta Update CI 2026-06-07 16:50:00 +02:00
molecule/default Update CI 2026-07-25 17:14:53 +02:00
tasks fix: Standarize vars.yml 2026-06-07 15:58:31 +02:00
.ansible-lint Update CI 2026-06-07 16:50:00 +02:00
.cicd Update CI 2026-06-09 10:52:19 +02:00
.cicd.overwrite Update supported platforms & CI 2026-03-14 19:29:14 +01:00
.collections First working code 2025-10-23 21:54:03 +02:00
.gitignore First working code 2025-10-23 21:54:03 +02:00
.releaserc.yml First working code 2025-10-23 21:54:03 +02:00
.roles First working code 2025-10-23 21:54:03 +02:00
.yamllint First working code 2025-10-23 21:54:03 +02:00
CHANGELOG.md chore(release): 1.3.0 [skip ci] 2026-07-23 18:04:17 +00:00
README.md Update CI 2026-06-07 16:50:00 +02:00

CI

ansible-role-duplicity

Dependencies

Roles

None

Collections

None

Platforms

Supported platforms

  • Red Hat Enterprise Linux 81
  • Red Hat Enterprise Linux 91
  • RockyLinux 8
  • RockyLinux 9
  • OracleLinux 8
  • OracleLinux 9
  • AlmaLinux 8
  • AlmaLinux 9
  • Debian 11 (Bullseye)
  • Debian 12 (Bookworm)
  • Debian 13 (Trixie)
  • Ubuntu 22.04 LTS
  • Ubuntu 24.04 LTS
  • Ubuntu 26.04 LTS
  • Fedora 43
  • Fedora 441

Note: 1 : no automated testing is performed on these platforms

Role Variables

defaults/main.yml


# List of required duplicity packages
duplicity_packages:
  - duplicity

# Location to write backup to
# duplicity_backup_location: /backup

# Backup schedules
duplicity_backup_schedules: []

defaults/family-Debian.yml


# List of optional duplicity packages
duplicity_packages_optional:
  - par2

defaults/family-RedHat.yml


# List of optional duplicity packages
duplicity_packages_optional:
  - par2cmdline

defaults/family-Suse.yml


# List of optional duplicity packages
duplicity_packages_optional:
  - par2

Example Playbook

molecule/default/converge.yml


- name: sample playbook for role 'duplicity'
  hosts: all
  become: 'yes'
  tasks:
    - name: Include role 'duplicity'
      ansible.builtin.include_role:
        name: duplicity