master
Raw Download raw file
 1# Building an ansible playbook to replace the IMS-install.sh bash script
 2
 3# setup ansible and get working 
 4sudo apt-get update
 5sudo apt-get install git python-yaml python-jinja2 vim # ansible dep
 6git clone https://github.com/ansible/ansible
 7source ansible/hacking/env-setup
 8
 9# test local run of ansible
10# create inventory file (inventory)
11ansible local -i inventory -m setup # run test connection, returns all facts about target
12# if this is failing, the first thing to make sure is the user you are running 
13# has a passwordless sudo ability
14
15# build playbook (ims-playbook.yml)
16