diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2022-12-17 18:03:39 +0100 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2022-12-17 18:29:39 +0100 |
commit | 9e16f39b59069e752bbd24f5408e39e8ac24ec79 (patch) | |
tree | 330100ffd054bd274bfe11426aa0ecd7f267d550 /roles/_workstation/hosts/tasks | |
parent | 83cfb7f2e072e63356acdc6640df849d78741813 (diff) | |
download | rules-9e16f39b59069e752bbd24f5408e39e8ac24ec79.tar.gz |
refactor(roles): force byte conversion by ansible
Diffstat (limited to 'roles/_workstation/hosts/tasks')
-rw-r--r-- | roles/_workstation/hosts/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/_workstation/hosts/tasks/main.yml b/roles/_workstation/hosts/tasks/main.yml index 20e247e..920fbf8 100644 --- a/roles/_workstation/hosts/tasks/main.yml +++ b/roles/_workstation/hosts/tasks/main.yml @@ -4,6 +4,6 @@ ansible.builtin.get_url: url: "{{ hosts_url }}" dest: "{{ hosts_file }}" - mode: 0644 + mode: "0644" owner: 0 group: 0 |