Ansible

Aus Alexander's Wiki

Installation (Ubuntu)

apt-get install software-properties-common
apt-add-repository ppa:ansible/ansible
apt-get update
apt-get install ansible

Installation (Manuell, Control machine)

git clone git://github.com/ansible/ansible.git --recursive
cd ./ansible

source ./hacking/env-setup

apt-get install build-essential libssl-dev libffi-dev python-dev
apt-get install python-setuptools
easy_install pip

pip install paramiko PyYAML Jinja2 httplib2 six

Update (Manuell)

Beim Update von Ansible müssen auch die Submodule mit upgedated werden. Diese geschieht durch die beiden Befehle:

git pull --rebase
git submodule update --init --recursive