]> git.phdru.name Git - ansible.git/blobdiff - playbooks/roles/setup-usrlocal/tasks/main.yaml
Fix(setup-usrlocal): Fix `chown user:group` syntax
[ansible.git] / playbooks / roles / setup-usrlocal / tasks / main.yaml
index f20475f2f6b139c5b606dc692a01a95cc2bc8682..2da9650447f19bd0f0d9fef3b6ab920eeaf41fc7 100644 (file)
@@ -12,7 +12,7 @@
 
 - name: Setup directories under /usr/local
   become: true
-  command: "find /usr/local -type d -exec chown root.{{ system_group }} {} + -exec chmod ug+rwx,o+rx,g+s {} +"
+  command: "find /usr/local -type d -exec chown root:{{ system_group }} {} + -exec chmod ug+rwx,o+rx,g+s {} +"
 
 - name: Setup files under /usr/local
   become: true