Convert Vagrant to Packer
[releng/builder.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     # Allow jenkins access to alternatives command to switch java version
42     cat <<EOF >/etc/sudoers.d/89-jenkins-user-defaults
43 Defaults:jenkins !requiretty
44 jenkins ALL = NOPASSWD: /usr/sbin/alternatives
45 EOF
46
47     echo "---> Updating operating system"
48     yum clean all -q
49     yum install -y -q deltarpm
50     yum update -y -q
51
52     # add in components we need or want on systems
53     echo "---> Installing base packages"
54     yum install -y -q @base https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
55     # separate group installs from package installs since a non-existing
56     # group with dnf based systems (F21+) will fail the install if such
57     # a group does not exist
58     yum install -y -q unzip xz puppet git perl-XML-XPath
59
60     # All of our systems require Java (because of Jenkins)
61     # Install all versions of the OpenJDK devel but force 1.7.0 to be the
62     # default
63
64     echo "---> Configuring OpenJDK"
65     yum install -y -q 'java-*-openjdk-devel'
66
67     FACTER_OS=$(/usr/bin/facter operatingsystem)
68     FACTER_OSVER=$(/usr/bin/facter operatingsystemrelease)
69     case "$FACTER_OS" in
70         Fedora)
71             if [ "$FACTER_OSVER" -ge "21" ]
72             then
73                 echo "---> not modifying java alternatives as OpenJDK 1.7.0 does not exist"
74             else
75                 alternatives --set java /usr/lib/jvm/jre-1.7.0-openjdk.x86_64/bin/java
76                 alternatives --set java_sdk_openjdk /usr/lib/jvm/java-1.7.0-openjdk.x86_64
77             fi
78         ;;
79         *)
80             alternatives --set java /usr/lib/jvm/jre-1.7.0-openjdk.x86_64/bin/java
81             alternatives --set java_sdk_openjdk /usr/lib/jvm/java-1.7.0-openjdk.x86_64
82         ;;
83     esac
84 }
85
86 ubuntu_systems() {
87     # Ignore SELinux since slamming that onto Ubuntu leads to
88     # frustration
89
90     # Allow jenkins access to update-alternatives command to switch java version
91     cat <<EOF >/etc/sudoers.d/89-jenkins-user-defaults
92 Defaults:jenkins !requiretty
93 jenkins ALL = NOPASSWD: /usr/bin/update-alternatives
94 EOF
95
96     export DEBIAN_FRONTEND=noninteractive
97     cat <<EOF >> /etc/apt/apt.conf
98 APT {
99   Get {
100     Assume-Yes "true";
101     allow-change-held-packages "true";
102     allow-downgrades "true";
103     allow-remove-essential "true";
104   };
105 };
106
107 Dpkg::Options {
108   "--force-confdef";
109   "--force-confold";
110 };
111
112 EOF
113
114     echo "---> Updating operating system"
115     apt-get update
116     apt-get upgrade
117
118     # add in stuff we know we need
119     echo "---> Installing base packages"
120     apt-get install unzip xz-utils puppet git libxml-xpath-perl
121
122     # install Java 7
123     echo "---> Configuring OpenJDK"
124     apt-get install openjdk-7-jdk
125
126     # make jdk8 available
127     add-apt-repository -y ppa:openjdk-r/ppa
128     apt-get update
129     # We need to force openjdk-8-jdk to install
130     apt-get install openjdk-8-jdk
131
132     # make sure that we still default to openjdk 7
133     update-alternatives --set java /usr/lib/jvm/java-7-openjdk-amd64/jre/bin/java
134     update-alternatives --set javac /usr/lib/jvm/java-7-openjdk-amd64/bin/javac
135 }
136
137 all_systems() {
138     # To handle the prompt style that is expected all over the environment
139     # with how use use robotframework we need to make sure that it is
140     # consistent for any of the users that are created during dynamic spin
141     # ups
142     echo 'PS1="[\u@\h \W]> "' >> /etc/skel/.bashrc
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         RedHat|CentOS)
149             if [ "$(/usr/bin/facter operatingsystemrelease | /bin/cut -d '.' -f1)" = "7" ]; then
150                 echo
151                 echo "---> CentOS 7"
152                 echo "No extra steps currently for CentOS 7"
153                 echo
154             else
155                 echo "---> CentOS 6"
156                 echo "Installing ODL YUM repo"
157                 yum install -q -y https://nexus.opendaylight.org/content/repositories/opendaylight-yum-epel-6-x86_64/rpm/opendaylight-release/0.1.0-1.el6.noarch/opendaylight-release-0.1.0-1.el6.noarch.rpm
158             fi
159         ;;
160         *)
161             echo "---> $FACTER_OS found"
162             echo "No extra steps for $FACTER_OS"
163         ;;
164     esac
165 }
166
167 echo "---> Attempting to detect OS"
168 # upstream cloud images use the distro name as the initial user
169 ORIGIN=$(if [ -e /etc/redhat-release ]
170     then
171         echo redhat
172     else
173         echo ubuntu
174     fi)
175 #ORIGIN=$(logname)
176
177 case "${ORIGIN}" in
178     fedora|centos|redhat)
179         echo "---> RH type system detected"
180         rh_systems
181     ;;
182     ubuntu)
183         echo "---> Ubuntu system detected"
184         ubuntu_systems
185     ;;
186     *)
187         echo "---> Unknown operating system"
188     ;;
189 esac
190
191 # execute steps for all systems
192 all_systems