1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 03:32:12 +00:00
iiab/scripts/ansible

130 lines
5.4 KiB
Text
Raw Normal View History

2017-09-26 04:42:00 +00:00
#!/bin/bash -e
# required to start loading IIAB with ansible
FOUND=""
URL="NA"
2017-09-26 15:05:05 +00:00
# TODO add check for version - to revese patching if upgrading
2017-09-27 05:10:24 +00:00
if [ $(which ansible-playbook) ]; then
VER=`ansible --version|head -n 1|cut -f 2 -d " "`
if [ $VER="2.2.0.0" ]; then
2017-09-27 19:02:57 +00:00
echo "Ansible $VER installed updating to 2.4.0"
pip install --upgrade ansible==2.4.0 --disable-pip-version-check
# sed -i 's/StrictVersion/LooseVersion/g' /usr/lib/python2.7/dist-packages/ansible/modules/core/web_infrastructure/htpasswd.py
2017-09-27 05:10:24 +00:00
fi
exit 0
fi
# TODO add check for version - to revese patching if upgrading
2017-09-27 19:02:57 +00:00
#if [ $(which ansible-playbook) ]; then
# VER=`ansible --version|head -n 1|cut -f 2 -d " "`
# echo "Ansible $VER installed exiting..."
# exit 0
#fi
2017-09-26 04:42:00 +00:00
echo "Installing --- Please Wait"
if [ -f /etc/fedora-release ]; then
VER=`grep VERSION_ID /etc/*elease | cut -d= -f2`
URL=https://github.com/jvonau/iiab/blob/ansible/vars/fedora-$VER.yml
dnf -y upgrade
dnf -y install ansible git bzip2 file findutils gzip hg svn sudo tar which unzip xz zip libselinux-python
dnf -y install python-pip python-setuptools python-wheel patch
FOUND="yes"
FAMILY="redhat"
fi
# might have to revisit dependencies with a redhat dialect
# ansible python-kerberos python-selinux python-winrm python-xmltodict sshpass bzip2 file findutils gzip tar unzip zip python-keyczar python-boto python-dnspython python-pyrax python-sphere
2017-05-27 18:09:50 +00:00
2017-09-26 04:42:00 +00:00
if [ -f /etc/centos-release ]; then
yum -y upgrade
yum -y install ca-certificates nss epel-release
yum -y install ansible git bzip2 file findutils gzip hg svn sudo tar which unzip xz zip libselinux-python
yum -y install python-pip python-setuptools python-wheel patch
FOUND="yes"
FAMILY="redhat"
fi
if [ -f /etc/olpc-release ]; then
yum -y upgrade
2017-05-27 18:09:50 +00:00
yum -y install ca-certificates nss
2017-09-26 04:42:00 +00:00
yum -y install git bzip2 file findutils gzip hg svn sudo tar which unzip xz zip libselinux-python
yum -y install python-pip python-setuptools python-wheel patch
pip install --upgrade pip setuptools wheel #EOL just do it
FOUND="yes"
FAMILY="olpc"
fi
2017-05-27 18:09:50 +00:00
2017-09-26 04:42:00 +00:00
if [ -f /etc/debian_version ]; then
# might pickup usbmount confirm ppa location
2017-09-27 18:32:47 +00:00
echo "deb http://ppa.launchpad.net/ansible/ansible/ubuntu xenial main" >> /etc/apt/sources.list
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367
2017-09-26 05:20:55 +00:00
apt-get -y update
apt-get -y install ansible git python-pip python-setuptools python-wheel patch
2017-09-26 04:42:00 +00:00
# apt-get install ansible python-kerberos python-selinux python-winrm python-xmltodict sshpass bzip2 file findutils gzip tar unzip zip python-keyczar python-boto python-dnspython python-pyrax python-sphere
FOUND="yes"
FAMILY="debian"
fi
if [ `grep -qi ubuntu /etc/lsb-release` ] || [ `grep -qi ubuntu /etc/os-release` ]; then
2017-09-27 18:32:47 +00:00
echo "deb http://ppa.launchpad.net/ansible/ansible/ubuntu xenial main" >> /etc/apt/sources.list
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367
2017-09-26 05:20:55 +00:00
apt-get -y update
2017-09-26 04:42:00 +00:00
# confirm PPA location
2017-09-27 18:32:47 +00:00
# apt-get install software-properties-common
# apt-add-repository ppa:ansible/ansible
2017-09-26 04:42:00 +00:00
# apt-get update
2017-09-26 05:20:55 +00:00
apt-get -y install ansible git python-pip python-setuptools python-wheel patch
2017-09-26 04:42:00 +00:00
# apt-get install ansible python-kerberos python-selinux python-winrm python-xmltodict sshpass bzip2 file findutils gzip tar unzip zip python-keyczar python-boto python-dnspython python-pyrax python-sphere
FOUND="yes"
FAMILY="debian"
fi
# Has 2.2.1
if [ `grep -qi raspbian /etc/*elease` ]; then
2017-09-27 18:32:47 +00:00
echo "deb http://ppa.launchpad.net/ansible/ansible/ubuntu xenial main" >> /etc/apt/sources.list
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367
2017-09-26 05:20:55 +00:00
apt-get -y update
apt-get -y install ansible git python-pip python-setuptools python-wheel patch
2017-09-26 04:42:00 +00:00
# apt-get install ansible python-kerberos python-selinux python-winrm python-xmltodict sshpass bzip2 file findutils gzip tar unzip zip python-keyczar python-boto python-dnspython python-pyrax python-sphere
FOUND="yes"
FAMILY="debian"
fi
2017-05-27 18:09:50 +00:00
2017-09-26 04:42:00 +00:00
if [ ! $FOUND = "yes" ]; then
echo 'WARN: Could not detect distro or distro unsupported'
exit 1
fi
2017-05-27 18:09:50 +00:00
2017-09-26 04:42:00 +00:00
# latest pip 2.2 is 2.2.3.0 on 2017-07-07
# ansible-2.3.1.0-1.el7.noarch.rpm from 2017-06-01
2017-05-27 18:09:50 +00:00
2017-09-26 04:42:00 +00:00
### start ansible pip install TODO add venv location /opt/iiab/anisble
if [ $FAMILY = "olpc" ]; then
pip install ansible==2.2.1 --disable-pip-version-check
VER=`ansible --version|head -n 1|cut -f 2 -d " "`
echo "ansible version installed via pip $VER"
fi
2017-05-27 18:09:50 +00:00
2017-09-26 15:05:05 +00:00
# TODO add check for version to skip patching
# APPLY TEMPORARY PATCH
# https://github.com/ansible/ansible/pull/20202
# https://github.com/iiab/iiab/issues/249
2017-09-27 18:32:47 +00:00
#if [ $FAMILY != "redhat" ]; then
# echo "Patching..."
# sed -i 's/StrictVersion/LooseVersion/g' /usr/lib/python2.7/dist-packages/ansible/modules/core/web_infrastructure/htpasswd.py
#fi
2017-09-26 15:05:05 +00:00
VER=`ansible --version|head -n 1|cut -f 2 -d " "`
echo "ansible version installed via package manager $VER"
# sample only
2017-09-26 04:42:00 +00:00
#if [ $FAMILY = "debian" ]; then
# rpm -e ansible
# pip install ansible==2.2.1 --disable-pip-version-check
#fi
2017-05-27 18:09:50 +00:00
2017-09-26 04:42:00 +00:00
#if [ $FAMILY = "debian" ]; then
# echo 'WARN: Trying to install ansible via pip without some dependencies'
# echo 'WARN: Not all functionality of ansible may be available'
# pip install ansible==2.3.1 --disable-pip-version-check
#fi
mkdir -p /etc/ansible/
echo -e '[local]\nlocalhost\n' > /etc/ansible/hosts
2017-05-27 18:09:50 +00:00
2017-09-26 04:42:00 +00:00
### end ansible routine
###
# other pip upgrades here if needed
###