6e651e521d1b161c1179824555b02afb39cbcb38
[releng/builder.git] / packer / provision / baseline.sh
1 #!/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
6 set -xeu -o pipefail
7
8 enable_service() {
9     # Enable services for Ubuntu instances
10     services=($@)
11
12     for service in "${services[@]}"; do
13         echo "---> Enable service: $service"
14         FACTER_OS=$(/usr/bin/facter operatingsystem)
15         FACTER_OSVER=$(/usr/bin/facter operatingsystemrelease)
16         if [ "$FACTER_OS" == "CentOS" ]; then
17             systemctl enable "$service"
18             systemctl start "$service"
19             systemctl status "$service"
20         elif [ "$FACTER_OS" == "Ubuntu" ]; then
21             case "$FACTER_OSVER" in
22                 14.04)
23                     service "$service" start
24                     service "$service" status
25                 ;;
26                 16.04)
27                     systemctl enable "$service"
28                     systemctl start "$service"
29                     systemctl status "$service"
30                 ;;
31                 *)
32                     echo "---> Unknown Ubuntu version $FACTER_OSVER"
33                     exit 1
34                 ;;
35             esac
36         else
37             echo "---> Unknown OS $FACTER_OS"
38             exit 1
39         fi
40     done
41 }
42
43 ensure_kernel_install() {
44     # Workaround for mkinitrd failing on occassion.
45     # On CentOS 7 it seems like the kernel install can fail it's mkinitrd
46     # run quietly, so we may not notice the failure. This script retries for a
47     # few times before giving up.
48     initramfs_ver=$(rpm -q kernel | tail -1 | sed "s/kernel-/initramfs-/")
49     grub_conf="/boot/grub/grub.conf"
50     # Public cloud does not use /boot/grub/grub.conf and uses grub2 instead.
51     if [ ! -e "$grub_conf" ]; then
52         echo "$grub_conf not found. Using Grub 2 conf instead."
53         grub_conf="/boot/grub2/grub.cfg"
54     fi
55
56     for i in $(seq 3); do
57         if grep "$initramfs_ver" "$grub_conf"; then
58             break
59         fi
60         echo "Kernel initrd missing. Retrying to install kernel..."
61         yum reinstall -y kernel
62     done
63     if ! grep "$initramfs_ver" "$grub_conf"; then
64         cat /boot/grub/grub.conf
65         echo "ERROR: Failed to install kernel."
66         exit 1
67     fi
68 }
69
70 ensure_ubuntu_install() {
71     # Workaround for mirrors occassionally failing to install a package.
72     # On Ubuntu sometimes the mirrors fail to install a package. This wrapper
73     # checks that a package is successfully installed before moving on.
74
75     packages=($@)
76
77     for pkg in "${packages[@]}"
78     do
79         # Retry installing package 5 times if necessary
80         for i in {0..5}
81         do
82             echo "$i: Installing $pkg"
83             if [ "$(dpkg-query -W -f='${Status}' "$pkg" 2>/dev/null | grep -c "ok installed")" -eq 0 ]; then
84                 apt-cache policy "$pkg"
85                 apt-get install "$pkg"
86                 continue
87             else
88                 echo "$pkg already installed."
89                 break
90             fi
91         done
92     done
93 }
94
95 rh_systems() {
96     # Handle the occurance where SELINUX is actually disabled
97     SELINUX=$(grep -E '^SELINUX=(disabled|permissive|enforcing)$' /etc/selinux/config)
98     MODE=$(echo "$SELINUX" | cut -f 2 -d '=')
99     case "$MODE" in
100         permissive)
101             echo "************************************"
102             echo "** SYSTEM ENTERING ENFORCING MODE **"
103             echo "************************************"
104             # make sure that the filesystem is properly labelled.
105             # it could be not fully labeled correctly if it was just switched
106             # from disabled, the autorelabel misses some things
107             # skip relabelling on /dev as it will generally throw errors
108             restorecon -R -e /dev /
109
110             # enable enforcing mode from the very start
111             setenforce enforcing
112
113             # configure system for enforcing mode on next boot
114             sed -i 's/SELINUX=permissive/SELINUX=enforcing/' /etc/selinux/config
115         ;;
116         disabled)
117             sed -i 's/SELINUX=disabled/SELINUX=permissive/' /etc/selinux/config
118             touch /.autorelabel
119
120             echo "*******************************************"
121             echo "** SYSTEM REQUIRES A RESTART FOR SELINUX **"
122             echo "*******************************************"
123         ;;
124         enforcing)
125             echo "*********************************"
126             echo "** SYSTEM IS IN ENFORCING MODE **"
127             echo "*********************************"
128         ;;
129     esac
130
131     # Allow jenkins access to alternatives command to switch java version
132     cat <<EOF >/etc/sudoers.d/89-jenkins-user-defaults
133 Defaults:jenkins !requiretty
134 jenkins ALL = NOPASSWD: /usr/sbin/alternatives
135 EOF
136
137     echo "---> Updating operating system"
138     yum clean all
139     yum install -y deltarpm
140     yum update -y
141
142     ensure_kernel_install
143
144     # add in components we need or want on systems
145     echo "---> Installing base packages"
146     yum install -y @base https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
147     # separate group installs from package installs since a non-existing
148     # group with dnf based systems (F21+) will fail the install if such
149     # a group does not exist
150     yum install -y unzip xz git git-review perl-XML-XPath
151
152     # facter is not installed by default on the base image and facter package
153     # gets removed when puppet4 is updated. To fix this use version of facter
154     # shipped with puppet4.
155     yum install -y facter
156
157     # ensure facter is available in $PATH avoid failures in retry loop
158     export PATH="/opt/puppetlabs/bin/:$PATH"
159
160     # Install puppet4
161     rpm -ivh https://yum.puppetlabs.com/puppetlabs-release-pc1-el-7.noarch.rpm
162     yum -y install -y puppet-agent
163
164     # Create symlink for facter and puppet
165     ln -sf /opt/puppetlabs/bin/facter /usr/bin/facter
166     ln -sf /opt/puppetlabs/puppet/bin/puppet /usr/bin/puppet
167
168     # All of our systems require Java (because of Jenkins)
169     # Install all versions of the OpenJDK devel but force 1.7.0 to be the
170     # default
171
172     echo "---> Configuring OpenJDK"
173     yum install -y 'java-*-openjdk-devel'
174
175     FACTER_OS=$(/usr/bin/facter operatingsystem)
176     FACTER_OSVER=$(/usr/bin/facter operatingsystemrelease)
177     case "$FACTER_OS" in
178         Fedora)
179             if [ "$FACTER_OSVER" -ge "21" ]
180             then
181                 echo "---> not modifying java alternatives as OpenJDK 1.7.0 does not exist"
182             else
183                 alternatives --set java /usr/lib/jvm/jre-1.7.0-openjdk.x86_64/bin/java
184                 alternatives --set java_sdk_openjdk /usr/lib/jvm/java-1.7.0-openjdk.x86_64
185             fi
186         ;;
187         RedHat|CentOS)
188             if [ "$(echo "$FACTER_OSVER" | cut -d'.' -f1)" -ge "7" ]
189             then
190                 echo "---> not modifying java alternatives as OpenJDK 1.7.0 does not exist"
191             else
192                 alternatives --set java /usr/lib/jvm/jre-1.7.0-openjdk.x86_64/bin/java
193                 alternatives --set java_sdk_openjdk /usr/lib/jvm/java-1.7.0-openjdk.x86_64
194             fi
195         ;;
196         *)
197             alternatives --set java /usr/lib/jvm/jre-1.7.0-openjdk.x86_64/bin/java
198             alternatives --set java_sdk_openjdk /usr/lib/jvm/java-1.7.0-openjdk.x86_64
199         ;;
200     esac
201
202     ########################
203     # --- START LFTOOLS DEPS
204
205     # Used by various scripts to push patches to Gerrit
206     yum install -y git-review
207
208     # Needed to parse OpenStack commands used by opendaylight-infra stack commands
209     # to initialize Heat template based systems.
210     yum install -y jq
211
212     # Used py lftools to speend up some scripts
213     wget http://ftp.riken.jp/Linux/cern/centos/7/cern/x86_64/Packages/parallel-20150522-1.el7.cern.noarch.rpm
214     yum localinstall -y parallel-20150522-1.el7.cern.noarch.rpm
215
216     # Used by lftools scripts to parse XML
217     yum install -y xmlstarlet
218
219     # Haskel Packages
220     # Cabal update fails on a 1G system so workaround that with a swap file
221     dd if=/dev/zero of=/tmp/swap bs=1M count=1024
222     mkswap /tmp/swap
223     swapon /tmp/swap
224
225     yum install -y cabal-install
226     cabal update
227     cabal install "Cabal<1.18"  # Pull Cabal version that is capable of building shellcheck
228     cabal install --bindir=/usr/local/bin "shellcheck-0.4.6"  # Pin shellcheck version
229
230     # openldap dev headers are required for lftools
231     yum install -y openldap-devel
232
233     # --- END LFTOOLS DEPS
234     ######################
235
236     # install haveged to avoid low entropy rejecting ssh connections
237     yum install -y haveged
238     systemctl enable haveged.service
239
240     # Install sysstat
241     yum install -y sysstat
242     enable_service sysstat
243
244     # Install python3 and dependencies, needed for Coala linting at least
245     yum install -y python34
246     yum install -y python34-{devel,virtualenv,setuptools,pip}
247
248     # Install python dependencies, useful generally
249     yum install -y python-{devel,virtualenv,setuptools,pip}
250 }
251
252 ubuntu_systems() {
253     # Ignore SELinux since slamming that onto Ubuntu leads to
254     # frustration
255
256     # Allow jenkins access to update-alternatives command to switch java version
257     cat <<EOF >/etc/sudoers.d/89-jenkins-user-defaults
258 Defaults:jenkins !requiretty
259 jenkins ALL = NOPASSWD: /usr/bin/update-alternatives
260 EOF
261
262     export DEBIAN_FRONTEND=noninteractive
263     cat <<EOF >> /etc/apt/apt.conf
264 APT {
265   Get {
266     Assume-Yes "true";
267     allow-change-held-packages "true";
268     allow-downgrades "true";
269     allow-remove-essential "true";
270   };
271 };
272
273 Dpkg::Options {
274   "--force-confdef";
275   "--force-confold";
276 };
277
278 EOF
279
280     # Add hostname to /etc/hosts to fix 'unable to resolve host' issue with sudo
281     sed -i "/127.0.0.1/s/$/ $(hostname)/" /etc/hosts
282
283     echo "---> Updating operating system"
284
285     # add additional repositories
286     sudo add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe restricted multiverse"
287
288     # facter is not installed by default on the base image and facter package
289     # gets removed when puppet4 is updated. To fix this use version of facter
290     # shipped with puppet4.
291     ensure_ubuntu_install facter
292     # ensure facter is available in $PATH avoid failures in retry loop
293     export PATH="/opt/puppetlabs/bin/:$PATH"
294
295     echo "---> Installing base packages"
296     apt-get clean
297     apt-get update -m
298     apt-get upgrade -m
299     apt-get dist-upgrade -m
300
301     ensure_ubuntu_install unzip xz-utils git libxml-xpath-perl
302
303     # Install python3 and dependencies, needed for Coala linting
304     ensure_ubuntu_install python3
305     ensure_ubuntu_install python3-{dev,setuptools,pip}
306
307     # Install python and dependencies
308     ensure_ubuntu_install python-{dev,virtualenv,setuptools,pip}
309
310     FACTER_OSVER=$(facter operatingsystemrelease)
311     case "$FACTER_OSVER" in
312         14.04)
313             echo "---> Installing OpenJDK"
314             apt-get install openjdk-7-jdk
315             # make jdk8 available
316             add-apt-repository -y ppa:openjdk-r/ppa
317             apt-get update
318             # We need to force openjdk-8-jdk to install
319             apt-get install openjdk-8-jdk
320             echo "---> Configuring OpenJDK"
321             # make sure that we still default to openjdk 7
322             update-alternatives --set java /usr/lib/jvm/java-7-openjdk-amd64/jre/bin/java
323             update-alternatives --set javac /usr/lib/jvm/java-7-openjdk-amd64/bin/javac
324
325             echo "---> Install puppet repository for 14.04"
326             apt-get purge puppet puppet-common
327             wget https://apt.puppetlabs.com/puppetlabs-release-pc1-trusty.deb
328             dpkg -i puppetlabs-release-pc1-trusty.deb
329
330             echo "---> Installing puppet"
331             apt-get update -m
332             ensure_ubuntu_install puppet-agent
333             # Create symlink for facter and puppet
334             ln -sf /opt/puppetlabs/bin/facter /usr/bin/facter
335             ln -sf /opt/puppetlabs/puppet/bin/puppet /usr/bin/puppet
336         ;;
337         16.04)
338             echo "---> Installing OpenJDK"
339             apt-get install openjdk-8-jdk
340
341             echo "---> Install puppet4 repository for 16.04"
342             apt-get purge puppet puppet-common
343             wget https://apt.puppetlabs.com/puppetlabs-release-pc1-xenial.deb
344             dpkg -i puppetlabs-release-pc1-xenial.deb
345
346             echo "---> Installing puppet"
347             apt-get update -m
348             ensure_ubuntu_install puppet-agent
349
350             # Create symlink for facter and puppet
351             ln -sf /opt/puppetlabs/bin/facter /usr/bin/facter
352             ln -sf /opt/puppetlabs/puppet/bin/puppet /usr/bin/puppet
353
354             echo "---> Installing python3 virtualenv"
355             # python3-virtualenv is available starting with 16.04.
356             ensure_ubuntu_install python3-virtualenv
357         ;;
358         *)
359             echo "---> Unknown Ubuntu version $FACTER_OSVER"
360             exit 1
361         ;;
362     esac
363
364     ########################
365     # --- START LFTOOLS DEPS
366
367     # Used by various scripts to push patches to Gerrit
368     ensure_ubuntu_install git-review
369
370     # Needed to parse OpenStack commands used by opendaylight-infra stack commands
371     # to initialize Heat template based systems.
372     ensure_ubuntu_install jq
373
374     # Used py lftools to speend up some scripts
375     ensure_ubuntu_install parallel
376
377     # Used by lftools scripts to parse XML
378     ensure_ubuntu_install xmlstarlet
379
380     # Haskel Packages
381     # Cabal update fails on a 1G system so workaround that with a swap file
382     dd if=/dev/zero of=/tmp/swap bs=1M count=1024
383     mkswap /tmp/swap
384     swapon /tmp/swap
385
386     ensure_ubuntu_install cabal-install
387     cabal update
388     cabal install --bindir=/usr/local/bin "shellcheck-0.4.6"  # Pin shellcheck version
389
390     # openldap dev headers are required for lftools
391     ensure_ubuntu_install libldap2-dev libssl-dev libsasl2-dev
392
393     # --- END LFTOOLS DEPS
394     ######################
395
396     # Install sysstat
397     ensure_ubuntu_install sysstat
398     sed -i 's/ENABLED="false"/ENABLED="true"/' /etc/default/sysstat
399     enable_service sysstat
400
401     # Install haveged to avoid low entropy rejecting ssh connections
402     apt-get install haveged
403     update-rc.d haveged defaults
404
405     # Disable unattended upgrades & daily updates
406     echo '---> Disabling automatic daily upgrades'
407     sed -ine 's/"1"/"0"/g' /etc/apt/apt.conf.d/10periodic
408     echo 'APT::Periodic::Unattended-Upgrade "0";' >> /etc/apt/apt.conf.d/10periodic
409
410     # Install packaging job dependencies for building debs
411     ensure_ubuntu_install  build-essential devscripts equivs dh-systemd python-yaml \
412                     python-jinja2 gdebi
413 }
414
415 all_systems() {
416     # To handle the prompt style that is expected all over the environment
417     # with how use use robotframework we need to make sure that it is
418     # consistent for any of the users that are created during dynamic spin
419     # ups
420     echo 'PS1="[\u@\h \W]> "' >> /etc/skel/.bashrc
421
422     # Do any Distro specific installations here
423     echo "Checking distribution"
424     FACTER_OS=$(/usr/bin/facter operatingsystem)
425     case "$FACTER_OS" in
426         RedHat|CentOS)
427             if [ "$(/usr/bin/facter operatingsystemrelease | /bin/cut -d '.' -f1)" = "7" ]; then
428                 echo
429                 echo "---> CentOS 7"
430                 echo "No extra steps currently for CentOS 7"
431                 echo
432             else
433                 echo "---> CentOS 6"
434                 echo "Installing ODL YUM repo"
435                 yum install -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
436             fi
437         ;;
438         *)
439             echo "---> $FACTER_OS found"
440             echo "No extra steps for $FACTER_OS"
441         ;;
442     esac
443 }
444
445 echo "---> Attempting to detect OS"
446 # upstream cloud images use the distro name as the initial user
447 ORIGIN=$(if [ -e /etc/redhat-release ]
448     then
449         echo redhat
450     else
451         echo ubuntu
452     fi)
453 #ORIGIN=$(logname)
454
455 case "${ORIGIN}" in
456     fedora|centos|redhat)
457         echo "---> RH type system detected"
458         rh_systems
459     ;;
460     ubuntu)
461         echo "---> Ubuntu system detected"
462         ubuntu_systems
463     ;;
464     *)
465         echo "---> Unknown operating system"
466     ;;
467 esac
468
469 # execute steps for all systems
470 all_systems