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/tasks | |
parent | 1cd2d31e0d5f81ce066121de78c0ed042fc3b6aa (diff) | |
download | rules-0df015e9b5c4aefd4245c94ee98021d2af80ed99.tar.gz |
lint: pass ansible-lint + yamllint
Diffstat (limited to 'roles/httpd/tasks')
-rw-r--r-- | roles/httpd/tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/httpd/tasks/main.yml b/roles/httpd/tasks/main.yml index a272afa..348ea52 100644 --- a/roles/httpd/tasks/main.yml +++ b/roles/httpd/tasks/main.yml @@ -1,11 +1,11 @@ - name: retrieve all configuration files - find: + ansible.builtin.find: path: "{{ httpd_configuration_dir }}" patterns: "*.conf" register: configuration_files - name: generate httpd configuration - template: + ansible.builtin.template: src: httpd.conf.j2 dest: "{{ httpd_configuration_file }}" owner: 0 @@ -13,7 +13,7 @@ mode: 0644 - name: enable and restart httpd - service: + ansible.builtin.service: name: httpd state: restarted enabled: true |