Fix "Forbidden implicit octal value" lint errors
This commit is contained in:
parent
1e973b3dde
commit
86d076ebc6
75 changed files with 227 additions and 227 deletions
|
@ -17,7 +17,7 @@
|
|||
ansible.builtin.file:
|
||||
path: /export/git
|
||||
state: directory
|
||||
mode: 0755
|
||||
mode: "0755"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
|||
ansible.builtin.copy:
|
||||
dest: /etc/gitweb.conf
|
||||
src: gitweb.conf
|
||||
mode: 0644
|
||||
mode: "0644"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
|
||||
|
@ -41,7 +41,7 @@
|
|||
ansible.builtin.copy:
|
||||
dest: /var/www/git/robots.txt
|
||||
content: "User-agent: *\nDisallow:\n"
|
||||
mode: 0644
|
||||
mode: "0644"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
|
||||
|
@ -49,7 +49,7 @@
|
|||
ansible.builtin.copy:
|
||||
dest: "/var/www/git/static/{{ item }}"
|
||||
src: "{{ item }}"
|
||||
mode: 0644
|
||||
mode: "0644"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
with_items:
|
||||
|
@ -60,7 +60,7 @@
|
|||
ansible.builtin.copy:
|
||||
dest: /etc/httpd/conf.local.d/git.conf
|
||||
src: git.conf
|
||||
mode: 0644
|
||||
mode: "0644"
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
notify: Restart apache
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue