X-Git-Url: https://arthur.barton.de/gitweb/?p=AnsibleRoles.git;a=blobdiff_plain;f=roles%2Fgit-backup-script%2Ftasks%2Fmain.yml;h=5375bee9eeb1c262154c66bf0c8dd58ed6287502;hp=77f39c4b57eafcadc3deb35a8cc0acee17bfdeef;hb=67cd2b0e9d706393b4e3496c54cb71ebc61b39fa;hpb=2814233822a1579c86247603a030826cbf6798c5 diff --git a/roles/git-backup-script/tasks/main.yml b/roles/git-backup-script/tasks/main.yml index 77f39c4..5375bee 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 + apt: + state: present + name: [ + 'rsync', + 'make', + ] - name: clone "backup-script" GIT repository tags: @@ -16,7 +19,8 @@ git: > accept_hostkey=True dest=/usr/local/src/backup-script - repo="git://arthur.barton.de/backup-script.git" + repo={{ git_backup_script_repository }} update=yes + version=master notify: - install "backup-script"