Browse Source

added example playbook

tags/v1.1
Ramiro de Zavalia 5 years ago
parent
commit
c01c626df2
2 changed files with 15 additions and 0 deletions
  1. 6
    0
      playbook/README.md
  2. 9
    0
      playbook/playbook.yml

+ 6
- 0
playbook/README.md View File

@@ -0,0 +1,6 @@
# Example Playbook

To run the playbook:
$ ansible-playbook playbook/example.yml

It will deploy an apache web server on the localhost

+ 9
- 0
playbook/playbook.yml View File

@@ -0,0 +1,9 @@
---

- hosts: localhost

vars:
apache_remove_default_vhost: yes

roles:
- role: apache

Loading…
Cancel
Save