]> arthur.barton.de Git - AnsibleRoles.git/blob - roles/git-backup-script/tasks/main.yml
Update "apt" tasks to use lists
[AnsibleRoles.git] / roles / git-backup-script / tasks / main.yml
1 ---
2 # git-backup-script
3
4 - name: install "rsync" and "make"
5   tags:
6     - packages
7   apt:
8     state: present
9     name: [
10       'rsync',
11       'make',
12     ]
13
14 - name: clone "backup-script" GIT repository
15   tags:
16     - git
17     - source
18     - backup
19   git: >
20     accept_hostkey=True
21     dest=/usr/local/src/backup-script
22     repo={{ git_backup_script_repository }}
23     update=yes
24     version=master
25   notify:
26     - install "backup-script"