summaryrefslogtreecommitdiff
path: root/salt/gentoo_baseimage/ci/files/cloudcfg.sh
diff options
context:
space:
mode:
authorCarlos Konstanski <carlos.konstanski@verizonwireless.com>2019-10-30 14:33:05 -0600
committerCarlos Konstanski <carlos.konstanski@verizonwireless.com>2019-10-30 14:33:05 -0600
commit7cab8996742b8128bed197f9457afd2af160cf5e (patch)
treedfd5b40b99e0935ba65b34d973f6e79a6bb39b24 /salt/gentoo_baseimage/ci/files/cloudcfg.sh
initial commit
Diffstat (limited to 'salt/gentoo_baseimage/ci/files/cloudcfg.sh')
-rw-r--r--salt/gentoo_baseimage/ci/files/cloudcfg.sh29
1 files changed, 29 insertions, 0 deletions
diff --git a/salt/gentoo_baseimage/ci/files/cloudcfg.sh b/salt/gentoo_baseimage/ci/files/cloudcfg.sh
new file mode 100644
index 0000000..400f7cf
--- /dev/null
+++ b/salt/gentoo_baseimage/ci/files/cloudcfg.sh
@@ -0,0 +1,29 @@
+#!/bin/bash
+
+# Prepare the instance for ansible. This amounts to installing python2.
+
+python=$(which python || which python3 || which python2 || false)
+
+case "$(${python} -m platform)" in
+ *Ubuntu*)
+ export DEBIAN_FRONTEND=noninteractive
+ apt-get update
+ apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" dist-upgrade
+ apt-get -y install aptitude python python2.7 python3-netaddr ntp ntpdate language-pack-de
+ update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1
+ update-alternatives --install /usr/bin/python python /usr/bin/python3.6 1
+ update-alternatives --set python /usr/bin/python3.6
+ ;;
+ *centos*|*redhat*)
+ # RHEL systems still use python2 by default; nothing to do
+ ;;
+ *gentoo*)
+ if [ ! -d /usr/portage/sys-devel/gcc ]; then
+ emerge-webrsync
+ fi
+ emerge --oneshot --update dev-lang/python:2.7 app-portage/gentoolkit net-misc/chrony
+ rc-update add chrony default
+ ;;
+esac
+
+exit 0