🚨: yamllint conformity
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
ansible.builtin.file:
|
||||
path: /srv/ftp
|
||||
state: directory
|
||||
mode: 0755
|
||||
mode: "0o755"
|
||||
|
||||
- name: Add cachedir file
|
||||
ansible.builtin.template:
|
||||
@@ -17,7 +17,7 @@
|
||||
dest: /srv/ftp/CACHEDIR.TAG
|
||||
owner: root
|
||||
group: root
|
||||
mode: '0644'
|
||||
mode: "0o644"
|
||||
|
||||
- name: Create upload directory
|
||||
ansible.builtin.file:
|
||||
@@ -25,7 +25,7 @@
|
||||
owner: ftp
|
||||
group: root
|
||||
state: directory
|
||||
mode: 0755
|
||||
mode: "0o755"
|
||||
|
||||
- name: Put vsftpd config file
|
||||
ansible.builtin.copy:
|
||||
@@ -33,7 +33,7 @@
|
||||
dest: /etc/vsftpd.conf
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0644
|
||||
mode: "0o644"
|
||||
notify: Restart vsftpd
|
||||
|
||||
- name: Put control size script
|
||||
@@ -42,7 +42,7 @@
|
||||
dest: /usr/local/sbin/deleteoldfiles.sh
|
||||
owner: root
|
||||
group: root
|
||||
mode: '0700'
|
||||
mode: "0o700"
|
||||
|
||||
- name: Cron control size script
|
||||
ansible.builtin.cron:
|
||||
|
Reference in New Issue
Block a user