diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-04-20 14:13:00 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-04-20 14:13:00 -0700 |
commit | 1a1b7c7d9303f5ebadc8e71dad3c82f3bea2bb24 (patch) | |
tree | b391876a99e0b206e74c4a37164e804886b88133 /playbooks/roles/bin | |
parent | d85cfa1693068666512b183ce9437faddda7de87 (diff) | |
download | infra-1a1b7c7d9303f5ebadc8e71dad3c82f3bea2bb24.tar.gz infra-1a1b7c7d9303f5ebadc8e71dad3c82f3bea2bb24.zip |
Fix umask
Diffstat (limited to 'playbooks/roles/bin')
-rw-r--r-- | playbooks/roles/bin/tasks/main.yml | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/playbooks/roles/bin/tasks/main.yml b/playbooks/roles/bin/tasks/main.yml index 69516ab..5254826 100644 --- a/playbooks/roles/bin/tasks/main.yml +++ b/playbooks/roles/bin/tasks/main.yml @@ -4,9 +4,6 @@ ansible.builtin.file: state: directory dest: '{{ bin_base }}/{{ item.path }}' - owner: 1000 - group: 1000 - mode: 755 with_filetree: '../templates' when: item.state == 'directory' @@ -14,9 +11,6 @@ ansible.builtin.template: src: '{{ item.src }}' dest: '{{ bin_base }}/{{ item.path }}' - owner: 1000 - group: 1000 - mode: 755 with_filetree: '../templates' when: item.state == 'file' |