]>
git.immae.eu Git - github/fretlink/docker-ansible.git/blob - mini-alpine3/install-ansible.sh
98dede034707a2f69e1d5e525117e17eef38a3b5
3 # Simple wrapper for installing ansible
7 echo "===> Adding prerequisites..."
9 cat ___APK_INSTALL_LIST
| \
11 apk
--update add
$ITEM
14 cat ___PIP_INSTALL_LIST
| \
16 pip
install --upgrade $ITEM
20 echo "===> Installing Ansible..."
24 echo "===> Adding hosts for convenience..." && \
25 mkdir -p /etc
/ansible
&& \
26 echo 'localhost' > /etc
/ansible
/hosts