diff options
Diffstat (limited to 'roles/git/tasks')
-rw-r--r-- | roles/git/tasks/main.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/roles/git/tasks/main.yml b/roles/git/tasks/main.yml index 90eba2b..c54b2aa 100644 --- a/roles/git/tasks/main.yml +++ b/roles/git/tasks/main.yml @@ -50,12 +50,14 @@ copy: src: git-shell-commands/ # trailing '/' -> directory contents dest: "{{ git.user.home }}/git-shell-commands/" + tags: git-cmds - name: add execution permission to git-shell commands file: path: "{{ git.user.home }}/git-shell-commands" mode: 0755 recurse: true + tags: git-cmds - name: (local) github sync - check ssh key existence become: false |