ansible-role--duplicity/tasks/main.yml

23 lines
445 B
YAML
Raw Permalink Normal View History

2024-07-12 12:36:06 +00:00
---
# tasks file for glenux.duplicity
# Ensure that variables are well defined
- assert:
that:
- duplicity_hostname != ""
- duplicity_work_directory != ""
- duplicity_enable != ""
# Install required system tools
- include: prerequisites.yml
# Install binaries & scripts
- include: install_duplicity.yml
- include: install_helpers.yml
# Configure duplicity
- include: config_duplicity.yml
- include: config_gnupg.yml
#