diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2022-10-22 16:41:45 +0200 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2022-10-22 16:41:45 +0200 |
commit | 0df015e9b5c4aefd4245c94ee98021d2af80ed99 (patch) | |
tree | d9dbf4259500857daf41b627dbc2d116ba92dbc1 /roles/httpd_pre/tasks | |
parent | 1cd2d31e0d5f81ce066121de78c0ed042fc3b6aa (diff) | |
download | rules-0df015e9b5c4aefd4245c94ee98021d2af80ed99.tar.gz |
lint: pass ansible-lint + yamllint
Diffstat (limited to 'roles/httpd_pre/tasks')
-rw-r--r-- | roles/httpd_pre/tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/httpd_pre/tasks/main.yml b/roles/httpd_pre/tasks/main.yml index 0209a84..46475d2 100644 --- a/roles/httpd_pre/tasks/main.yml +++ b/roles/httpd_pre/tasks/main.yml @@ -1,5 +1,5 @@ - name: create httpd directory - file: + ansible.builtin.file: path: /etc/httpd.d state: directory owner: 0 @@ -7,7 +7,7 @@ mode: 0644 - name: create htpasswd directory - file: + ansible.builtin.file: path: /var/www/htpasswd state: directory owner: "www" @@ -15,7 +15,7 @@ mode: 0700 - name: mount nfs in chroot - include_role: + ansible.builtin.include_role: name: nfsclient vars: nfsclient_dir: "{{ httpd_chroot }}/data" |