You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
332 B
15 lines
332 B
- name: Create ask directory |
|
file: |
|
path: /var/www/ask.openstack.org |
|
state: directory |
|
owner: www-data |
|
group: www-data |
|
mode: 0755 |
|
|
|
- name: Copy ask index.html |
|
copy: |
|
src: 'ask.openstack.org/index.html' |
|
dest: '/var/www/ask.openstack.org/index.html' |
|
owner: www-data |
|
group: www-data |
|
mode: 0644
|
|
|