e33821cb40f63f4433a095d2379dd31bb7a25156
[ci-management.git] / packer / provision / baseline.sh
1 #!/bin/bash
2
3 # vim: ts=4 sw=4 sts=4 et tw=72 :
4
5 rh_systems() {
6     # Handle the occurance where SELINUX is actually disabled
7     SELINUX=$(grep -E '^SELINUX=(disabled|permissive|enforcing)$' /etc/selinux/config)
8     MODE=$(echo "$SELINUX" | cut -f 2 -d '=')
9     case "$MODE" in
10         permissive)
11             echo "************************************"
12             echo "** SYSTEM ENTERING ENFORCING MODE **"
13             echo "************************************"
14             # make sure that the filesystem is properly labelled.
15             # it could be not fully labeled correctly if it was just switched
16             # from disabled, the autorelabel misses some things
17             # skip relabelling on /dev as it will generally throw errors
18             restorecon -R -e /dev /
19
20             # enable enforcing mode from the very start
21             setenforce enforcing
22
23             # configure system for enforcing mode on next boot
24             sed -i 's/SELINUX=permissive/SELINUX=enforcing/' /etc/selinux/config
25         ;;
26         disabled)
27             sed -i 's/SELINUX=disabled/SELINUX=permissive/' /etc/selinux/config
28             touch /.autorelabel
29
30             echo "*******************************************"
31             echo "** SYSTEM REQUIRES A RESTART FOR SELINUX **"
32             echo "*******************************************"
33         ;;
34         enforcing)
35             echo "*********************************"
36             echo "** SYSTEM IS IN ENFORCING MODE **"
37             echo "*********************************"
38         ;;
39     esac
40
41     echo "---> Updating operating system"
42     yum clean all -q
43     yum install -y -q deltarpm
44     yum update -y -q
45
46     # add in components we need or want on systems
47     echo "---> Installing base packages"
48     yum install -y -q @base https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
49     # separate group installs from package installs since a non-existing
50     # group with dnf based systems (F21+) will fail the install if such
51     # a group does not exist
52     yum install -y -q unzip xz puppet git perl-XML-XPath wget make
53
54     # All of our systems require Java (because of Jenkins)
55     # Install all versions of the OpenJDK devel but force 1.7.0 to be the
56     # default
57
58     echo "---> Configuring OpenJDK"
59     yum install -y -q 'java-*-openjdk-devel'
60
61     FACTER_OS=$(/usr/bin/facter operatingsystem)
62     FACTER_OSVER=$(/usr/bin/facter operatingsystemrelease)
63     case "$FACTER_OS" in
64         Fedora)
65             if [ "$FACTER_OSVER" -ge "21" ]
66             then
67                 echo "---> not modifying java alternatives as OpenJDK 1.7.0 does not exist"
68             else
69                 alternatives --set java /usr/lib/jvm/jre-1.7.0-openjdk.x86_64/bin/java
70                 alternatives --set java_sdk_openjdk /usr/lib/jvm/java-1.7.0-openjdk.x86_64
71             fi
72         ;;
73         *)
74             alternatives --set java /usr/lib/jvm/jre-1.7.0-openjdk.x86_64/bin/java
75             alternatives --set java_sdk_openjdk /usr/lib/jvm/java-1.7.0-openjdk.x86_64
76         ;;
77     esac
78 }
79
80 ubuntu_systems() {
81     # Ignore SELinux since slamming that onto Ubuntu leads to
82     # frustration
83
84     export DEBIAN_FRONTEND=noninteractive
85     cat <<EOF >> /etc/apt/apt.conf
86 APT {
87   Get {
88     Assume-Yes "true";
89     allow-change-held-packages "true";
90     allow-downgrades "true";
91     allow-remove-essential "true";
92   };
93 };
94
95 Dpkg::Options {
96   "--force-confdef";
97   "--force-confold";
98 };
99
100 EOF
101
102     echo "---> Updating operating system"
103     apt-get update -qq > /dev/null
104     apt-get upgrade -qq > /dev/null
105
106     # add in stuff we know we need
107     echo "---> Installing base packages"
108     apt-get install -qq unzip xz-utils puppet git libxml-xpath-perl make wget > /dev/null
109
110     # install Java 7
111     echo "---> Configuring OpenJDK"
112     apt-get install -qq openjdk-7-jdk > /dev/null
113
114     # make jdk8 available
115     add-apt-repository -y ppa:openjdk-r/ppa > /dev/null
116     apt-get update -qq > /dev/null
117     # We need to force openjdk-8-jdk to install
118     apt-get install -qq openjdk-8-jdk > /dev/null
119
120     # make sure that we still default to openjdk 7
121     update-alternatives --set java /usr/lib/jvm/java-7-openjdk-amd64/jre/bin/java
122     update-alternatives --set javac /usr/lib/jvm/java-7-openjdk-amd64/bin/javac
123
124     # disable unattended upgrades & daily updates
125     echo '---> Disabling automatic daily upgrades'
126     apt-get remove unattended-upgrades
127     if [ -f /usr/bin/systemctl ]
128     then
129         systemctl stop apt.systemd.daily
130         systemctl disable apt.systemd.daily
131     else
132         /etc/init.d/unattended-upgrades stop
133         update-rc.d -f unattended-upgrades remove
134     fi
135 }
136
137 all_systems() {
138     # Allow jenkins access to update-alternatives command to switch java version
139     cat <<EOF >/etc/sudoers.d/89-jenkins-user-defaults
140 Defaults:jenkins !requiretty
141 jenkins ALL = NOPASSWD: /usr/bin/update-alternatives
142 EOF
143
144     # Do any Distro specific installations here
145     echo "Checking distribution"
146     FACTER_OS=$(/usr/bin/facter operatingsystem)
147     case "$FACTER_OS" in
148         *)
149             echo "---> $FACTER_OS found"
150             echo "No extra steps for $FACTER_OS"
151         ;;
152     esac
153 }
154
155 echo "---> Attempting to detect OS"
156 # upstream cloud images use the distro name as the initial user
157 ORIGIN=$(if [ -e /etc/redhat-release ]
158     then
159         echo redhat
160     else
161         echo ubuntu
162     fi)
163 #ORIGIN=$(logname)
164
165 case "${ORIGIN}" in
166     fedora|centos|redhat)
167         echo "---> RH type system detected"
168         rh_systems
169     ;;
170     ubuntu)
171         echo "---> Ubuntu system detected"
172         ubuntu_systems
173     ;;
174     *)
175         echo "---> Unknown operating system"
176     ;;
177 esac
178
179 # execute steps for all systems
180 all_systems