aboutsummaryrefslogtreecommitdiffstats
path: root/roles/git/tasks
diff options
context:
space:
mode:
authorRomain Gonçalves <me@rgoncalves.se>2022-12-17 18:03:39 +0100
committerRomain Gonçalves <me@rgoncalves.se>2022-12-17 18:29:39 +0100
commit9e16f39b59069e752bbd24f5408e39e8ac24ec79 (patch)
tree330100ffd054bd274bfe11426aa0ecd7f267d550 /roles/git/tasks
parent83cfb7f2e072e63356acdc6640df849d78741813 (diff)
downloadrules-9e16f39b59069e752bbd24f5408e39e8ac24ec79.tar.gz
refactor(roles): force byte conversion by ansible
Diffstat (limited to 'roles/git/tasks')
-rw-r--r--roles/git/tasks/main.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/git/tasks/main.yml b/roles/git/tasks/main.yml
index 28c1cbf..5ad8c98 100644
--- a/roles/git/tasks/main.yml
+++ b/roles/git/tasks/main.yml
@@ -24,7 +24,7 @@
owner: "{{ git_user }}"
group: "{{ git_group }}"
state: directory
- mode: 0755
+ mode: "0755"
loop:
- "{{ git_dir }}"
- "{{ git_dir }}/git-shell-commands"
@@ -44,7 +44,7 @@
dest: "{{ git_dir }}/.gitconfig"
owner: "{{ git_user }}"
group: "{{ git_group }}"
- mode: 0644
+ mode: "0644"
- name: include ssh key synchronization
ansible.builtin.include_role:
remember that computers suck.