aboutsummaryrefslogtreecommitdiffhomepage
path: root/mini-debian9/install-ansible.sh
blob: 608305008778dd405af1953105d298c35064ce8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
#
# Simple wrapper for installing ansible
#


export DEBIAN_FRONTEND=noninteractive


echo "===> Adding prerequisites..."

apt-get update -y
cat ___APT_INSTALL_LIST  | \
    while read ITEM; do
        apt-get install -y $ITEM
    done



echo "===> Installing Ansible..."
apt-get install -y ansible



echo "===> Adding hosts for convenience..."  && \
mkdir -p /etc/ansible                        && \
echo 'localhost' > /etc/ansible/hosts