7 lines
348 B
YAML
7 lines
348 B
YAML
- name: Configure Project
|
|
become: yes
|
|
copy: src="./config/application.{{ project_config }}.ini" dest="{{ ansistrano_release_path.stdout }}/application/configs/application.ini"
|
|
|
|
- name: Set www-data owner of "ansistrano_deploy_to"
|
|
become: yes
|
|
file: path="{{ ansistrano_deploy_to }}" state=directory recurse=yes owner=www-data group=www-data |