From 6479862c9ca7db8e629ea4887bf6fad0dfae754f Mon Sep 17 00:00:00 2001 From: Radar231 Date: Fri, 23 Jul 2021 18:45:44 -0400 Subject: [PATCH] initial checkin --- du_backups.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 du_backups.yml diff --git a/du_backups.yml b/du_backups.yml new file mode 100644 index 0000000..22ff266 --- /dev/null +++ b/du_backups.yml @@ -0,0 +1,26 @@ +--- +########################################################################### +# +# This is the top level playbook for the 'du_backups' role. +# +# This role will set up the duplicity backup configuration to the target host. +# +########################################################################### +# +# This playbook can be run using the following command line; +# +# ansible-playbook -i du_backups.yml +# +# ie, +# ansible-playbook -i 192.168.1.123, du_backups.yml +# +########################################################################### + +- hosts: all + gather_facts: true + user: root + + roles: + - role: du_backups + +# EOF