# Building an ansible playbook to replace the IMS-install.sh bash script

# setup ansible and get working 
sudo apt-get update
sudo apt-get install git python-yaml python-jinja2 vim # ansible dep
git clone https://github.com/ansible/ansible
source ansible/hacking/env-setup

# test local run of ansible
# create inventory file (inventory)
ansible local -i inventory -m setup # run test connection, returns all facts about target
# if this is failing, the first thing to make sure is the user you are running 
# has a passwordless sudo ability

# build playbook (ims-playbook.yml)

