Skip to content

Instantly share code, notes, and snippets.

@pspravin
Created April 27, 2017 22:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pspravin/7379ea3a25b379ddb68b846476d162dd to your computer and use it in GitHub Desktop.
Save pspravin/7379ea3a25b379ddb68b846476d162dd to your computer and use it in GitHub Desktop.
webserver playbook
---
- hosts: webserver
become: true
tasks:
- name: install web components
yum: name={{item}} state=present
with_items:
- httpd
- libapache2-mod-wsgi
- python-pip
- python-virtualenv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment