Skip to content

Instantly share code, notes, and snippets.

@popstas
Last active August 22, 2018 07:55
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save popstas/61a5ddce08fe1a269f62576808cee54e to your computer and use it in GitHub Desktop.
Save popstas/61a5ddce08fe1a269f62576808cee54e to your computer and use it in GitHub Desktop.
Install LAMP with ansible from geerlingguy
sudo apt-get install -y python-dev python-pip
sudo pip install ansible
sudo ansible-galaxy install geerlingguy.apache geerlingguy.mysql geerlingguy.php
wget https://gist.githubusercontent.com/popstas/61a5ddce08fe1a269f62576808cee54e/raw/de7bceea261f5a76fd88d8673046e5e18be7e35a/lamp.yml
ansible-playbook -i 'localhost,' -c local lamp.yml
---
- hosts: all
become: yes
roles:
- geerlingguy.apache
- geerlingguy.mysql
- geerlingguy.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment