mirror of
https://github.com/Apress/Beginning-Ansible-Concepts-and-Application.git
synced 2024-11-12 18:27:48 +01:00
16 lines
285 B
YAML
16 lines
285 B
YAML
|
---
|
||
|
- hosts: webservers
|
||
|
become: true
|
||
|
tasks:
|
||
|
- name: Ensure nginx is installed
|
||
|
apt:
|
||
|
name: nginx
|
||
|
state: present
|
||
|
|
||
|
- name: Push website content to the web root
|
||
|
copy :
|
||
|
src: index.html
|
||
|
dest: /var/www/html/
|
||
|
mode: u=rw,g=r,o=r
|
||
|
|