diff --git a/roles/php_website/molecule/default/converge.yml b/roles/php_website/molecule/default/converge.yml index 281a31735ae19720b7467fa2524f292fe2878c33..c5567a9a36868757aeba2b3ae4e53ba37190625d 100644 --- a/roles/php_website/molecule/default/converge.yml +++ b/roles/php_website/molecule/default/converge.yml @@ -57,7 +57,7 @@ tasks: # parameters-mandatory application - name: Set-up directory where PHP files are hosted at - file: + ansible.builtin.file: path: /var/www/parameters-mandatory/htdocs state: directory owner: admin-parameters-mandatory @@ -65,7 +65,7 @@ mode: "0750" - name: Deploy a couple of PHP pages for testing purposes - copy: + ansible.builtin.copy: src: "tests/data/php/mandatory/{{ item }}" dest: "/var/www/parameters-mandatory/htdocs/{{ item }}" owner: admin-parameters-mandatory @@ -77,7 +77,7 @@ # parameters-optional application - name: Set-up directory where PHP files are hosted at - file: + ansible.builtin.file: path: /var/www/parameters-optional.local/htdocs state: directory owner: admin-parameters-optional_local @@ -85,7 +85,7 @@ mode: "0750" - name: Deploy a couple of PHP pages for testing purposes - copy: + ansible.builtin.copy: src: "tests/data/php/optional/{{ item }}" dest: "/var/www/parameters-optional.local/htdocs/{{ item }}" owner: admin-parameters-optional_local