mirror of
https://github.com/Apress/Beginning-Ansible-Concepts-and-Application.git
synced 2024-11-09 17:07:44 +01:00
15 lines
285 B
YAML
15 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
|
|
|