diff --git a/01/ansible.cfg b/01/ansible.cfg new file mode 100644 index 0000000..2c30f8a --- /dev/null +++ b/01/ansible.cfg @@ -0,0 +1,11 @@ +[defaults] + +# Farben ausschalten +#nocolor = 1 + +[colors] +# Für dunklen Hintergrund in der Console +verbose = bright blue +debug = bright gray +error = bright red + diff --git a/01/install_ansible_pip.txt b/01/install_ansible_pip.txt new file mode 100644 index 0000000..6470ce6 --- /dev/null +++ b/01/install_ansible_pip.txt @@ -0,0 +1,9 @@ +# Debian-Universum +% sudo apt install python3-pip python3-cryptography python3-packaging python3-resolvelib python3-yaml + # python3-jinja2 + +# Alpine Linux +% sudo apk add py3-pip py3-cryptography py3-jinja2 py3-resolvelib py3-yaml + +% sudo sudo pip3 install ansible +