From 1b7c6acae00d9a31ef90753c5862fbbc484690b0 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Thu, 14 Apr 2016 16:55:20 +0200 Subject: [PATCH] git-backup-script: Make sure "make" is installed, which is required --- roles/git-backup-script/tasks/main.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/roles/git-backup-script/tasks/main.yml b/roles/git-backup-script/tasks/main.yml index 6ff6ab4..7c57afd 100644 --- a/roles/git-backup-script/tasks/main.yml +++ b/roles/git-backup-script/tasks/main.yml @@ -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: -- 2.39.2