diff --git a/.ansible-ci.yml b/.ansible-ci.yml index da3642a..21e8d10 100644 --- a/.ansible-ci.yml +++ b/.ansible-ci.yml @@ -3,10 +3,10 @@ become: yes become_user: root + tasks: - name: Copy project/index.php - file: - src: /project/index.php - dst: /var/www/html + copy: + src: project/index.php + dest: /var/www/html owner: apache group: apache - recurse: yes