blob: e95ad90e3bd8cd5fb309713cf751abe40f154026 [file] [log] [blame]
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -08001#!/bin/bash
2
3# vim: ts=4 sw=4 sts=4 et tw=72 :
4
5# force any errors to cause the script and job to end in failure
6set -xeu -o pipefail
7
8ensure_kernel_install() {
9 # Workaround for mkinitrd failing on occassion.
10 # On CentOS 7 it seems like the kernel install can fail it's mkinitrd
11 # run quietly, so we may not notice the failure. This script retries for a
12 # few times before giving up.
13 initramfs_ver=$(rpm -q kernel | tail -1 | sed "s/kernel-/initramfs-/")
14 grub_conf="/boot/grub/grub.conf"
15 # Public cloud does not use /boot/grub/grub.conf and uses grub2 instead.
16 if [ ! -e "$grub_conf" ]; then
17 echo "$grub_conf not found. Using Grub 2 conf instead."
18 grub_conf="/boot/grub2/grub.cfg"
19 fi
20
21 for i in $(seq 3); do
22 if grep "$initramfs_ver" "$grub_conf"; then
23 break
24 fi
25 echo "Kernel initrd missing. Retrying to install kernel..."
26 yum reinstall -y kernel
27 done
28 if ! grep "$initramfs_ver" "$grub_conf"; then
29 cat /boot/grub/grub.conf
30 echo "ERROR: Failed to install kernel."
31 exit 1
32 fi
33}
34
35ensure_ubuntu_install() {
36 # Workaround for mirrors occassionally failing to install a package.
37 # On Ubuntu sometimes the mirrors fail to install a package. This wrapper
38 # checks that a package is successfully installed before moving on.
39
40 packages=($@)
41
42 for pkg in "${packages[@]}"
43 do
44 # Retry installing package 5 times if necessary
45 for i in {0..5}
46 do
47 if [ "$(dpkg-query -W -f='${Status}' "$pkg" 2>/dev/null | grep -c "ok installed")" -eq 0 ]; then
48 apt-cache policy "$pkg"
49 apt-get install "$pkg"
50 continue
51 else
52 echo "$pkg already installed."
53 break
54 fi
55 done
56 done
57}
58
59rh_systems() {
60 # Handle the occurance where SELINUX is actually disabled
61 SELINUX=$(grep -E '^SELINUX=(disabled|permissive|enforcing)$' /etc/selinux/config)
62 MODE=$(echo "$SELINUX" | cut -f 2 -d '=')
63 case "$MODE" in
64 permissive)
65 echo "************************************"
66 echo "** SYSTEM ENTERING ENFORCING MODE **"
67 echo "************************************"
68 # make sure that the filesystem is properly labelled.
69 # it could be not fully labeled correctly if it was just switched
70 # from disabled, the autorelabel misses some things
71 # skip relabelling on /dev as it will generally throw errors
72 restorecon -R -e /dev /
73
74 # enable enforcing mode from the very start
75 setenforce enforcing
76
77 # configure system for enforcing mode on next boot
78 sed -i 's/SELINUX=permissive/SELINUX=enforcing/' /etc/selinux/config
79 ;;
80 disabled)
81 sed -i 's/SELINUX=disabled/SELINUX=permissive/' /etc/selinux/config
82 touch /.autorelabel
83
84 echo "*******************************************"
85 echo "** SYSTEM REQUIRES A RESTART FOR SELINUX **"
86 echo "*******************************************"
87 ;;
88 enforcing)
89 echo "*********************************"
90 echo "** SYSTEM IS IN ENFORCING MODE **"
91 echo "*********************************"
92 ;;
93 esac
94
95 # Allow jenkins access to alternatives command to switch java version
96 cat <<EOF >/etc/sudoers.d/89-jenkins-user-defaults
97Defaults:jenkins !requiretty
98jenkins ALL = NOPASSWD: /usr/sbin/alternatives
99EOF
100
101 echo "---> Updating operating system"
102 yum clean all
103 yum install -y deltarpm
104 yum update -y
105
106 ensure_kernel_install
107
108 # add in components we need or want on systems
109 echo "---> Installing base packages"
110 yum install -y @base https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
111 # separate group installs from package installs since a non-existing
112 # group with dnf based systems (F21+) will fail the install if such
113 # a group does not exist
114 yum install -y unzip xz puppet git git-review perl-XML-XPath
115 yum install -y python-{devel,virtualenv,setuptools,pip}
116
117 # All of our systems require Java (because of Jenkins)
118 # Install all versions of the OpenJDK devel but force 1.7.0 to be the
119 # default
120
121 echo "---> Configuring OpenJDK"
122 yum install -y 'java-*-openjdk-devel'
123
124 FACTER_OS=$(/usr/bin/facter operatingsystem)
125 FACTER_OSVER=$(/usr/bin/facter operatingsystemrelease)
126 case "$FACTER_OS" in
127 Fedora)
128 if [ "$FACTER_OSVER" -ge "21" ]
129 then
130 echo "---> not modifying java alternatives as OpenJDK 1.7.0 does not exist"
131 else
132 alternatives --set java /usr/lib/jvm/jre-1.7.0-openjdk.x86_64/bin/java
133 alternatives --set java_sdk_openjdk /usr/lib/jvm/java-1.7.0-openjdk.x86_64
134 fi
135 ;;
136 RedHat|CentOS)
137 if [ "$(echo "$FACTER_OSVER" | cut -d'.' -f1)" -ge "7" ]
138 then
139 echo "---> not modifying java alternatives as OpenJDK 1.7.0 does not exist"
140 else
141 alternatives --set java /usr/lib/jvm/jre-1.7.0-openjdk.x86_64/bin/java
142 alternatives --set java_sdk_openjdk /usr/lib/jvm/java-1.7.0-openjdk.x86_64
143 fi
144 ;;
145 *)
146 alternatives --set java /usr/lib/jvm/jre-1.7.0-openjdk.x86_64/bin/java
147 alternatives --set java_sdk_openjdk /usr/lib/jvm/java-1.7.0-openjdk.x86_64
148 ;;
149 esac
150
151 ########################
152 # --- START LFTOOLS DEPS
153
154 # Used by various scripts to push patches to Gerrit
155 yum install -y git-review
156
157 # Needed to parse OpenStack commands used by opendaylight-infra stack commands
158 # to initialize Heat template based systems.
159 yum install -y jq
160
161 # Used by lftools scripts to parse XML
162 yum install -y xmlstarlet
163
164 # Haskel Packages
165 # Cabal update fails on a 1G system so workaround that with a swap file
166 dd if=/dev/zero of=/tmp/swap bs=1M count=1024
167 mkswap /tmp/swap
168 swapon /tmp/swap
169
170 yum install -y cabal-install
171 cabal update
172 cabal install "Cabal<1.18" # Pull Cabal version that is capable of building shellcheck
173 cabal install --bindir=/usr/local/bin "shellcheck-0.4.6" # Pin shellcheck version
174
175 # --- END LFTOOLS DEPS
176 ######################
177
178 # install haveged to avoid low entropy rejecting ssh connections
179 yum install -y haveged
180 systemctl enable haveged.service
181}
182
183ubuntu_systems() {
184 # Ignore SELinux since slamming that onto Ubuntu leads to
185 # frustration
186
187 # Allow jenkins access to update-alternatives command to switch java version
188 cat <<EOF >/etc/sudoers.d/89-jenkins-user-defaults
Zack Williams52b4cb62019-08-30 08:09:07 -0700189Cmnd_Alias UALTS = /usr/sbin/update-alternatives, /usr/sbin/update-java-alternatives
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -0800190Defaults:jenkins !requiretty
Zack Williams52b4cb62019-08-30 08:09:07 -0700191jenkins ALL = NOPASSWD: UALTS
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -0800192EOF
193
194 export DEBIAN_FRONTEND=noninteractive
195 cat <<EOF >> /etc/apt/apt.conf
196APT {
197 Get {
198 Assume-Yes "true";
199 allow-change-held-packages "true";
200 allow-downgrades "true";
201 allow-remove-essential "true";
202 };
203};
204
205Dpkg::Options {
206 "--force-confdef";
207 "--force-confold";
208};
209
210EOF
211
212 # Add hostname to /etc/hosts to fix 'unable to resolve host' issue with sudo
213 sed -i "/127.0.0.1/s/$/ $(hostname)/" /etc/hosts
214
215 echo "---> Updating operating system"
216
Zack Williams852578f2018-04-12 14:03:57 -0700217 # Change made 2018-07-09 by zdw
218 # per discussion on #lf-releng, the upstream Ubuntu image changed to be
219 # missing add-apt-repository, so the next command failed.
220 apt-get update -m
221 apt-get install -y software-properties-common
222
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -0800223 # add additional repositories
Zack Williams852578f2018-04-12 14:03:57 -0700224 add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe restricted multiverse"
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -0800225
226 echo "---> Installing base packages"
227 apt-get clean
228 apt-get update -m
229 apt-get upgrade -m
230 apt-get dist-upgrade -m
231
Andy Bavierb781c4c2018-09-20 08:16:52 -0700232 apt-get update -m
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -0800233 ensure_ubuntu_install unzip xz-utils puppet git libxml-xpath-perl
234
Zack Williams1b00d402019-07-22 17:17:10 -0700235 # Deprecated - updating to corretto Java distro, 2019-07-22, zdw
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -0800236 # install Java 7
Zack Williams1b00d402019-07-22 17:17:10 -0700237 # echo "---> Configuring OpenJDK"
238 # FACTER_OSVER=$(/usr/bin/facter operatingsystemrelease)
239 # case "$FACTER_OSVER" in
240 # 14.04)
241 # apt-get install openjdk-7-jdk
242 # # make jdk8 available
243 # add-apt-repository -y ppa:openjdk-r/ppa
244 # apt-get update
245 # # We need to force openjdk-8-jdk to install
246 # apt-get install openjdk-8-jdk
247 # # make sure that we still default to openjdk 7
248 # update-alternatives --set java /usr/lib/jvm/java-7-openjdk-amd64/jre/bin/java
249 # update-alternatives --set javac /usr/lib/jvm/java-7-openjdk-amd64/bin/javac
250 # ;;
251 # 16.04)
252 # apt-get install openjdk-8-jdk
253 # ;;
254 # *)
255 # echo "---> Unknown Ubuntu version $FACTER_OSVER"
256 # exit 1
257 # ;;
258 # esac
259 ########################
260
261 echo "---> Configuring Corretto JDK Distribution"
262 # instructions: https://docs.aws.amazon.com/corretto/latest/corretto-8-ug/generic-linux-install.html
263 # install prereqs
264 apt-get install java-common
265
266 # install Java8
267 CORRETTO_JAVA8_VERSION="8.222.10-1"
268 CORRETTO_JAVA8_SHA256SUM="e5fd6c6f2d1a1fc5e6926f7a543e67ad0f0e0389ddc5d2deb5890bdeb21ea445"
269 curl -L -o /tmp/corretto_java8.deb "https://d3pxv6yz143wms.cloudfront.net/$(echo $CORRETTO_JAVA8_VERSION | tr - .)/java-1.8.0-amazon-corretto-jdk_${CORRETTO_JAVA8_VERSION}_amd64.deb"
270 echo "$CORRETTO_JAVA8_SHA256SUM /tmp/corretto_java8.deb" | sha256sum -c -
271 dpkg -i /tmp/corretto_java8.deb
272
273 # install Java11
274 CORRETTO_JAVA11_VERSION="11.0.4.11-1"
275 CORRETTO_JAVA11_SHA256SUM="f47c77f8f9ee5a80804765236c11dc749d351d3b8f57186c6e6b58a6c4019d3e"
276 curl -L -o /tmp/corretto_java11.deb "https://d3pxv6yz143wms.cloudfront.net/$(echo $CORRETTO_JAVA11_VERSION | tr - .)/java-11-amazon-corretto-jdk_${CORRETTO_JAVA11_VERSION}_amd64.deb"
277 echo "$CORRETTO_JAVA11_SHA256SUM /tmp/corretto_java11.deb" | sha256sum -c -
278 dpkg -i /tmp/corretto_java11.deb
279
Zack Williams52b4cb62019-08-30 08:09:07 -0700280 # Fix corretto 11 lack of jinfo that prevents update-java-alternatives from working
281 # Upstream fix not integrated yet: https://github.com/corretto/corretto-11/pull/27
282 cat <<EOF >/usr/lib/jvm/.java-11-amazon-corretto.jinfo
283name=java-11-amazon-corretto
284alias=java-11-amazon-corretto
285priority=11100002
286section=main
287
288jdk java /usr/lib/jvm/java-11-amazon-corretto/bin/java
289jdk keytool /usr/lib/jvm/java-11-amazon-corretto/bin/keytool
290jdk rmid /usr/lib/jvm/java-11-amazon-corretto/bin/rmid
291jdk rmiregistry /usr/lib/jvm/java-11-amazon-corretto/bin/rmiregistry
292jdk jjs /usr/lib/jvm/java-11-amazon-corretto/bin/jjs
293jdk pack200 /usr/lib/jvm/java-11-amazon-corretto/bin/pack200
294jdk unpack200 /usr/lib/jvm/java-11-amazon-corretto/bin/unpack200
295jdk javac /usr/lib/jvm/java-11-amazon-corretto/bin/javac
296jdk jaotc /usr/lib/jvm/java-11-amazon-corretto/bin/jaotc
297jdk jlink /usr/lib/jvm/java-11-amazon-corretto/bin/jlink
298jdk jmod /usr/lib/jvm/java-11-amazon-corretto/bin/jmod
299jdk jhsdb /usr/lib/jvm/java-11-amazon-corretto/bin/jhsdb
300jdk jar /usr/lib/jvm/java-11-amazon-corretto/bin/jar
301jdk jarsigner /usr/lib/jvm/java-11-amazon-corretto/bin/jarsigner
302jdk javadoc /usr/lib/jvm/java-11-amazon-corretto/bin/javadoc
303jdk javap /usr/lib/jvm/java-11-amazon-corretto/bin/javap
304jdk jcmd /usr/lib/jvm/java-11-amazon-corretto/bin/jcmd
305jdk jconsole /usr/lib/jvm/java-11-amazon-corretto/bin/jconsole
306jdk jdb /usr/lib/jvm/java-11-amazon-corretto/bin/jdb
307jdk jdeps /usr/lib/jvm/java-11-amazon-corretto/bin/jdeps
308jdk jdeprscan /usr/lib/jvm/java-11-amazon-corretto/bin/jdeprscan
309jdk jimage /usr/lib/jvm/java-11-amazon-corretto/bin/jimage
310jdk jinfo /usr/lib/jvm/java-11-amazon-corretto/bin/jinfo
311jdk jmap /usr/lib/jvm/java-11-amazon-corretto/bin/jmap
312jdk jps /usr/lib/jvm/java-11-amazon-corretto/bin/jps
313jdk jrunscript /usr/lib/jvm/java-11-amazon-corretto/bin/jrunscript
314jdk jshell /usr/lib/jvm/java-11-amazon-corretto/bin/jshell
315jdk jstack /usr/lib/jvm/java-11-amazon-corretto/bin/jstack
316jdk jstat /usr/lib/jvm/java-11-amazon-corretto/bin/jstat
317jdk jstatd /usr/lib/jvm/java-11-amazon-corretto/bin/jstatd
318jdk rmic /usr/lib/jvm/java-11-amazon-corretto/bin/rmic
319jdk serialver /usr/lib/jvm/java-11-amazon-corretto/bin/serialver
320
321EOF
322
Zack Williams1b00d402019-07-22 17:17:10 -0700323 # Set default version to be Java8
Zack Williams52b4cb62019-08-30 08:09:07 -0700324 update-java-alternatives --set java-1.8.0-amazon-corretto
Zack Williams1b00d402019-07-22 17:17:10 -0700325
326 # Set default version to be Java11
Zack Williams52b4cb62019-08-30 08:09:07 -0700327 # update-java-alternatives --set java-11-amazon-corretto
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -0800328
329 ########################
330 # --- START LFTOOLS DEPS
331
332 # Used by various scripts to push patches to Gerrit
333 ensure_ubuntu_install git-review
334
335 # Needed to parse OpenStack commands used by opendaylight-infra stack commands
336 # to initialize Heat template based systems.
337 ensure_ubuntu_install jq
338
339 # Used by lftools scripts to parse XML
340 ensure_ubuntu_install xmlstarlet
341
Zack Williamsae52f5e2018-04-12 11:47:57 -0700342 # Change made by zdw on 2018-04-12
343 # hackage.haskell.org was down, talked to zxiiro on #lf-releng and he recommended
344 # pulling down the packages in a way similar to this ansible role, rather than using cabal:
345 # https://github.com/lfit/ansible-roles-shellcheck-install/blob/master/tasks/main.yml
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -0800346
Zack Williams1b00d402019-07-22 17:17:10 -0700347 SHELLCHECK_VERSION="v0.6.0"
348 SHELLCHECK_SHA256SUM="95c7d6e8320d285a9f026b5241f48f1c02d225a1b08908660e8b84e58e9c7dce"
Zack Williamsae52f5e2018-04-12 11:47:57 -0700349 curl -L -o /tmp/shellcheck.tar.xz https://storage.googleapis.com/shellcheck/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz
350 echo "$SHELLCHECK_SHA256SUM /tmp/shellcheck.tar.xz" | sha256sum -c -
351 pushd /tmp
352 tar -xJvf shellcheck.tar.xz
353 cp shellcheck-${SHELLCHECK_VERSION}/shellcheck /usr/local/bin/shellcheck
354 chmod a+x /usr/local/bin/shellcheck
355 popd
Linux Foundation Administrators1dc9dd52018-01-26 09:09:09 -0800356
357 # --- END LFTOOLS DEPS
358 ######################
359
360 # install haveged to avoid low entropy rejecting ssh connections
361 apt-get install haveged
362 update-rc.d haveged defaults
363
364 # disable unattended upgrades & daily updates
365 echo '---> Disabling automatic daily upgrades'
366 sed -ine 's/"1"/"0"/g' /etc/apt/apt.conf.d/10periodic
367 echo 'APT::Periodic::Unattended-Upgrade "0";' >> /etc/apt/apt.conf.d/10periodic
368}
369
370all_systems() {
371 # Do any Distro specific installations here
372 echo "Checking distribution"
373 FACTER_OS=$(/usr/bin/facter operatingsystem)
374 case "$FACTER_OS" in
375 *)
376 echo "---> $FACTER_OS found"
377 echo "No extra steps for $FACTER_OS"
378 ;;
379 esac
380}
381
382echo "---> Attempting to detect OS"
383# upstream cloud images use the distro name as the initial user
384ORIGIN=$(if [ -e /etc/redhat-release ]
385 then
386 echo redhat
387 else
388 echo ubuntu
389 fi)
390#ORIGIN=$(logname)
391
392case "${ORIGIN}" in
393 fedora|centos|redhat)
394 echo "---> RH type system detected"
395 rh_systems
396 ;;
397 ubuntu)
398 echo "---> Ubuntu system detected"
399 ubuntu_systems
400 ;;
401 *)
402 # Kill the build for unhandled distributions
403 echo "---> Unknown operating system" 1>&2
404 exit 1
405 ;;
406esac
407
408# execute steps for all systems
409all_systems