Fixes for ansible-lint
This commit is contained in:
parent
225d79acad
commit
82a43f8921
10 changed files with 23 additions and 21 deletions
|
@ -17,7 +17,7 @@
|
|||
ansible.builtin.file:
|
||||
path: "{{ item }}"
|
||||
state: directory
|
||||
mode: 0755
|
||||
mode: "0755"
|
||||
owner: root
|
||||
group: root
|
||||
with_items:
|
||||
|
@ -28,7 +28,7 @@
|
|||
ansible.builtin.copy:
|
||||
dest: /etc/opt/chrome/policies/managed/foo.sh.json
|
||||
src: managed.json
|
||||
mode: 0644
|
||||
mode: "0644"
|
||||
owner: root
|
||||
group: root
|
||||
|
||||
|
@ -36,7 +36,7 @@
|
|||
ansible.builtin.copy:
|
||||
dest: /etc/opt/chrome/policies/recommended/foo.sh.json
|
||||
src: recommended.json
|
||||
mode: 0644
|
||||
mode: "0644"
|
||||
owner: root
|
||||
group: root
|
||||
|
||||
|
@ -44,7 +44,7 @@
|
|||
ansible.builtin.copy:
|
||||
dest: "/usr/local/bin/{{ item }}"
|
||||
src: "{{ item }}.sh"
|
||||
mode: 0755
|
||||
mode: "0755"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
with_items:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue