]> arthur.barton.de Git - AnsibleRoles.git/commitdiff
git-backup-script: Make sure "make" is installed, which is required
authorAlexander Barton <alex@barton.de>
Thu, 14 Apr 2016 14:55:20 +0000 (16:55 +0200)
committerAlexander Barton <alex@barton.de>
Thu, 14 Apr 2016 14:55:20 +0000 (16:55 +0200)
roles/git-backup-script/tasks/main.yml

index 6ff6ab4086f269b6307083a507148ae0f61c04e1..7c57afd357166a29539789613ed419c52eacb8c8 100644 (file)
@@ -1,12 +1,15 @@
 ---
 # git-backup-script
 
-- name: install "rsync"
+- name: install "rsync" and "make"
   tags:
     - packages
   apt: >
     state=installed
-    name=rsync
+    name={{ item }}
+  with_items:
+    - rsync
+    - make
 
 - name: clone "backup-script" GIT repository
   tags: