21 lines
353 B
YAML
21 lines
353 B
YAML
|
---
|
||
|
- name: install httpd
|
||
|
hosts: web
|
||
|
become: true
|
||
|
gather_facts: false
|
||
|
|
||
|
tasks:
|
||
|
- name: Copy web page
|
||
|
copy:
|
||
|
src: ./index.html
|
||
|
dest: /var/www/html/
|
||
|
owner: apache
|
||
|
group: apache
|
||
|
mode: '0755'
|
||
|
|
||
|
- name: restart apache
|
||
|
systemd:
|
||
|
name: httpd
|
||
|
state: restarted
|
||
|
enabled: yes
|