Ansible: Unterschied zwischen den Versionen

Aus Alexander's Wiki
Zeile 12: Zeile 12:
pip install paramiko PyYAML Jinja2 httplib2 six
pip install paramiko PyYAML Jinja2 httplib2 six


</source>
= Update =
Beim Update von Ansible müssen auch die Submodule mit upgedated werden. Diese geschieht durch die beiden Befehle:
<source lang="bash" encl="div">
git pull --rebase
git submodule update --init --recursive
</source>
</source>

Version vom 8. Oktober 2016, 10:48 Uhr

Installation (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 (apt-get install python-pip)

pip install paramiko PyYAML Jinja2 httplib2 six

Update

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