ansible-playbooks/README.md

34 lines
830 B
Markdown
Raw Normal View History

2013-09-26 11:05:05 +00:00
My Ansible Playbooks
2013-09-26 11:02:30 +00:00
=================
2013-09-26 11:05:05 +00:00
This is just my repository of playbooks.
* create-user.yml
* Creates a user with a password, a MySql DB, and an Apache virtual host.
2013-09-26 11:02:30 +00:00
### Setup Ansible
2013-09-26 11:09:29 +00:00
sudo aptitude -y install git python-jinja2 python-yaml python-paramiko python-software-properties software-properties-common
2013-09-26 11:02:30 +00:00
add-apt-repository ppa:rquillo/ansible
aptitude update && aptitude install ansible
echo "localhost" > /etc/ansible/hosts
You can now test by typing:
ansible -c local -m ping all
You should see:
localhost | success >> {
"module": "ping",
"ping": "pong
}
### Run the play
By executing the following, it will setup only the commonly used components:
ansible-playbook -c local --tags="common" ./create-user.yml
You can also just run the run-all script.