update_jdn.sh 25.6 KB
Newer Older
1
#!/bin/bash
2
# vim: set noexpandtab:
3
# Copyright 2012-2019 Holger Levsen <holger@layer-acht.org>
4
#         ©      2018 Mattia Rizzolo <mattia@debian.org>
5
6
# released under the GPLv=2

Holger Levsen's avatar
Holger Levsen committed
7
# puppet / salt / ansible / fai / chef / deployme.app - disclaimer
Holger Levsen's avatar
Holger Levsen committed
8
9
10
11
12
13
14
15
16
17
18
# (IOW: this script has been grown in almost 500 commits and it shows…)
#
# yes, we know… and: "it" should probably still be done.
#
# It just unclear, how/what, and what we have actually mostly works.
#
# Switching to jenkins.debian.org is probably an opportunity
# to write (refactor this into) *yet another deployment script*
# (interacting with the DSA machine setup which is in puppet…),
# thus obsoleting this script gradually, though this is used on
# 47 hosts currently (of which quite some were initially installed
Edward Betts's avatar
Edward Betts committed
19
# manually…)
Holger Levsen's avatar
Holger Levsen committed
20
21
22
#
# so, yes, patches welcome. saying this is crap alone is not helpful,
# nor is just suggesting some new or old technology. patches most welcome!
23
24
#
# that said, there's a new one: init_node ;)
Holger Levsen's avatar
Holger Levsen committed
25

26
27
set -e

28
BASEDIR="$(dirname "$(readlink -e $0)")"
29
STAMP=/var/log/jenkins/update-jenkins.stamp
30
31
# The $@ below means that command line args get passed on to j-j-b
# which allows one to specify --flush-cache or --ignore-cache
32
JJB="jenkins-jobs $@"
33
DPKG_ARCH="$(dpkg --print-architecture)"
Holger Levsen's avatar
Holger Levsen committed
34

35
# so we can later run some commands only if $0 has been updated…
Philip Hands's avatar
Philip Hands committed
36
if [ -f $STAMP ] && [ $STAMP -nt $BASEDIR/$0 ] ; then
Holger Levsen's avatar
Holger Levsen committed
37
	UP2DATE=true
Holger Levsen's avatar
Holger Levsen committed
38
	echo $HOSTNAME is up2date.
Philip Hands's avatar
Philip Hands committed
39
40
else
	UP2DATE=false
Holger Levsen's avatar
Holger Levsen committed
41
	echo $HOSTNAME needs to be updated.
42
43
44
fi


Holger Levsen's avatar
Holger Levsen committed
45
explain() {
Holger Levsen's avatar
Holger Levsen committed
46
	echo "$HOSTNAME: $1"
Holger Levsen's avatar
Holger Levsen committed
47
48
}

49
50
51
set_correct_date() {
		# set correct date
		sudo service ntp stop || true
52
		sudo ntpdate -b $1
53
}
54

55
disable_dsa_check_packages() {
56
	# disable check for outdated packages as someday in the future
57
	# packages from security.d.o will appear outdated always…
58
59
	echo -e "#!/bin/sh\n# disabled dsa-check by update_jdn.sh\nexit 0" | sudo tee /usr/local/bin/dsa-check-packages
	sudo chmod a+rx /usr/local/bin/dsa-check-packages
60
61
}

62
echo "--------------------------------------------"
Holger Levsen's avatar
Holger Levsen committed
63
explain "$(date) - begin deployment update."
64

65
66
67
68
#
# temporarily test to check which hosts don't use systemd
#
if [ -z "$(dpkg -l|grep systemd-sysv||true)" ] ; then 
69
	echo "no systemd-sysv installed on $(hostname), please enter to continue…"
70
71
72
	read
fi

73
# some nodes need special treatment…
74
case $HOSTNAME in
75
	profitbricks-build5-amd64|profitbricks-build6-i386|profitbricks-build15-amd64|profitbricks-build16-i386)
Holger Levsen's avatar
Holger Levsen committed
76
		# set correct date
77
		set_correct_date de.pool.ntp.org
78
		;;
79
	codethink-sled9*|codethink-sled11*|codethink-sled13*|codethink-sled15*)
80
		# set correct date
81
		set_correct_date de.pool.ntp.org
Holger Levsen's avatar
Holger Levsen committed
82
		;;
83
	osuosl-build170-amd64|osuosl-build172-amd64)
84
		# set correct date
85
		set_correct_date time.osuosl.org
86
		;;
87
88
89
	*)	;;
esac

90
91
92
93
94
95
96
97
98
99
100
# ubuntu decided to change kernel perms in the middle of LTS…
case $HOSTNAME in
	codethink-sled*)
		# fixup perms
		sudo chmod +r /boot/vmlinuz-*
		;;
	*)	;;
esac



101
102
103
#
# set up users and groups
#
104
declare -A user_host_groups u_shell
105
sudo_groups='jenkins,jenkins-adm,sudo,adm'
106
107
108

# if there's a need for host groups, a case statement on $HOSTNAME here that sets $GROUPNAME, say, should do the trick
# then you can define user_host_groups['phil','lvm_group']=... below
109
# and add checks for the GROUP version where ever the HOSTNAME is checked in the following code
110
111
112
113
114

user_host_groups['helmut','*']="$sudo_groups"
user_host_groups['holger','*']="$sudo_groups"
user_host_groups['holger','jenkins']="reproducible,${user_host_groups['holger','*']}"
user_host_groups['mattia','*']="$sudo_groups"
115
user_host_groups['mattia','jenkins']="reproducible,${user_host_groups['mattia','*']}"
116
user_host_groups['phil','jenkins-test-vm']="$sudo_groups,libvirt,libvirt-qemu"
117
user_host_groups['phil','jenkins']="$sudo_groups"
118
user_host_groups['lunar','jenkins']='reproducible'
119
120
user_host_groups['lynxis','osuosl-build171-amd64']="$sudo_groups"
user_host_groups['lynxis','osuosl-build172-amd64']="$sudo_groups"
121
user_host_groups['lynxis','jenkins']="jenkins"
122
user_host_groups['hans','osuosl-build168-amd64']="$sudo_groups"
Mattia Rizzolo's avatar
Mattia Rizzolo committed
123
user_host_groups['vagrant','*']="$sudo_groups"
124
user_host_groups['bernhard','osuosl-build174-amd64']="$sudo_groups"
125
126

u_shell['mattia']='/bin/zsh'
127
u_shell['lynxis']='/bin/fish'
128
u_shell['jenkins-adm']='/bin/bash'
129

130
131
132
# get the users out of the user_host_groups array's index
users=$(for i in ${!user_host_groups[@]}; do echo ${i%,*} ; done | sort -u)

133
( $UP2DATE && [ -z "$(find authorized_keys -newer $0)" ] ) || for user in ${users}; do
134
	# -v is a bashism to check for set variables, used here to see if this user is active on this host
135
	if [ ! -v user_host_groups["$user","$HOSTNAME"] ] && [ ! -v user_host_groups["$user",'*'] ] && [ ! -v user_host_groups["$user","$DPKG_ARCH"] ] ; then
Holger Levsen's avatar
Holger Levsen committed
136
137
		continue
	fi
138

139
140
141
142
143
144
	# create the user
	if ! getent passwd $user > /dev/null ; then
		# adduser, defaulting to /bin/bash as shell
		sudo adduser --gecos "" --shell "${u_shell[$user]:-/bin/bash}" --disabled-password $user
	fi
	# add groups: first try the specific host, or if unset fall-back to default '*' setting
145
	for h in "$HOSTNAME" "$DPKG_ARCH" '*' ; do
146
		if [ -v user_host_groups["$user","$h"] ] ; then
Holger Levsen's avatar
Holger Levsen committed
147
			sudo usermod -G "${user_host_groups["$user","$h"]}" $user
148
			break
149
		fi
150
151
152
153
154
	done
	# add the user's keys (if any)
	if ls authorized_keys/${user}@*.pub >/dev/null 2>&1 ; then
		[ -d /var/lib/misc/userkeys ] || sudo mkdir -p /var/lib/misc/userkeys
		cat authorized_keys/${user}@*.pub | sudo tee /var/lib/misc/userkeys/${user} > /dev/null
155
	fi
156
157
done

158
159
160
161
162
sudo mkdir -p /srv/workspace
[ -d /srv/schroots ] || sudo mkdir -p /srv/schroots
[ -h /chroots ] || sudo ln -s /srv/workspace/chroots /chroots
[ -h /schroots ] || sudo ln -s /srv/schroots /schroots

163
164
# prepare tmpfs on some hosts
case $HOSTNAME in
Mattia Rizzolo's avatar
Mattia Rizzolo committed
165
166
167
168
	jenkins)
		TMPFSSIZE=100
		TMPSIZE=15
		;;
Holger Levsen's avatar
Holger Levsen committed
169
	profitbricks-build9-amd64)
170
		TMPFSSIZE=40
Mattia Rizzolo's avatar
Mattia Rizzolo committed
171
172
		TMPSIZE=8
		;;
Holger Levsen's avatar
Holger Levsen committed
173
	profitbricks-build*)
Mattia Rizzolo's avatar
Mattia Rizzolo committed
174
175
176
		TMPFSSIZE=200
		TMPSIZE=15
		;;
177
178
179
180
	codethink*)
		TMPFSSIZE=100
		TMPSIZE=15
		;;
181
182
183
184
	osuosl*)
		TMPFSSIZE=400
		TMPSIZE=50
		;;
185
186
187
	*) ;;
esac
case $HOSTNAME in
188
189
190
191
192
193
	profitbricks-build*i386)
		if ! grep -q '/srv/workspace' /etc/fstab; then
			echo "Warning: you need to manually create a /srv/workspace partition on i386 nodes, exiting."
			exit 1
		fi
		;;
194
	jenkins|profitbricks-build*amd64|codethink*|osuosl*)
195
		if ! grep -q '^tmpfs\s\+/srv/workspace\s' /etc/fstab; then
196
			echo "tmpfs		/srv/workspace	tmpfs	defaults,size=${TMPFSSIZE}g	0	0" | sudo tee -a /etc/fstab >/dev/null  
197
		fi
Mattia Rizzolo's avatar
Mattia Rizzolo committed
198
199
200
		if ! grep -q '^tmpfs\s\+/tmp\s' /etc/fstab; then
			echo "tmpfs		/tmp	tmpfs	defaults,size=${TMPSIZE}g	0	0" | sudo tee -a /etc/fstab >/dev/null
		fi
201
202
		if ! mountpoint -q /srv/workspace; then
			if test -z "$(ls -A /srv/workspace)"; then
203
				sudo mount /srv/workspace
204
			else
205
				explain "WARNING: mountpoint /srv/workspace is non-empty."
206
207
208
209
210
			fi
		fi
		;;
	*) ;;
esac
211

212
# make sure needed directories exists - some directories will not be needed on all hosts...
213
for directory in /schroots /srv/reproducible-results /srv/d-i /srv/udebs /var/log/jenkins/ /srv/jenkins /srv/jenkins/pseudo-hosts /srv/workspace/chroots ; do
214
215
216
	if [ ! -d $directory ] ; then
		sudo mkdir $directory
	fi
Holger Levsen's avatar
Holger Levsen committed
217
	sudo chown jenkins.jenkins $directory
218
done
Holger Levsen's avatar
Holger Levsen committed
219
for directory in /srv/jenkins ; do
220
221
222
223
224
	if [ ! -d $directory ] ; then
		sudo mkdir $directory
		sudo chown jenkins-adm.jenkins-adm $directory
	fi
done
225

226
if ! test -h /chroots; then
Holger Levsen's avatar
Holger Levsen committed
227
	sudo rmdir /chroots || sudo rm -f /chroots # do not recurse
228
	if test -e /chroots; then
Holger Levsen's avatar
Holger Levsen committed
229
		explain "/chroots could not be cleared."
230
	else
231
		sudo ln -s /srv/workspace/chroots /chroots
232
233
234
	fi
fi

235
236
237
238
239
# only on Debian systems
if [ -f /etc/debian_version ] ; then
	#
	# install packages we need
	#
240
	if [ $BASEDIR/$0 -nt $STAMP ] || [ ! -f $STAMP ] ; then
Holger Levsen's avatar
Holger Levsen committed
241
242
		DEBS=" 
			bash-completion 
243
244
			bc
			bsd-mailx
245
246
			curl
			debian-archive-keyring
247
			cdebootstrap-
248
249
			devscripts
			eatmydata
250
			etckeeper
251
			figlet
Holger Levsen's avatar
Holger Levsen committed
252
			git
Holger Levsen's avatar
Holger Levsen committed
253
			gnupg
254
			haveged
Holger Levsen's avatar
Holger Levsen committed
255
			htop
256
			less
257
			locales-all
Mattia Rizzolo's avatar
Mattia Rizzolo committed
258
			lsof
259
260
			molly-guard
			moreutils
Holger Levsen's avatar
Holger Levsen committed
261
			needrestart
262
			netcat-traditional
263
264
			ntp
			ntpdate
265
			pigz 
266
			postfix
267
			procmail
268
			psmisc
269
			python3-psycopg2 
270
			python3-yaml
Holger Levsen's avatar
Holger Levsen committed
271
			schroot 
272
273
			screen
			slay
274
			stunnel
Holger Levsen's avatar
Holger Levsen committed
275
276
			subversion 
			subversion-tools 
277
			systemd-sysv
Holger Levsen's avatar
Holger Levsen committed
278
279
280
			sudo 
			unzip 
			vim 
281
			zsh
282
			"
283
		case $HOSTNAME in
284
285
286
			codethink*)
				# install debootstrap from stretch-backports on ubuntu nodes as since 20180927 debootstrap 1.0.78+nmu1ubuntu1.6 cannot install sid anymore
				DEBS="$DEBS
287
288
289
290
291
292
293
				debootstrap/stretch-backports
				munin-node/stretch-backports
				munin-plugins-core/stretch-backports
				munin-plugins-extra/stretch-backports
				pbuilder/stretch-backports
				" ;;
		esac
294
		case $HOSTNAME in
295
			# needed for rebuilding Debian (using .buildinfo files)
296
			osuosl-build173-amd64) DEBS="$DEBS libdpkg-perl libwww-mechanize-perl sbuild" ;;
297
298
			# needed for opensuse openbuildservice
			osuosl-build174-amd64) DEBS="$DEBS osc obs-build qemu-kvm libjson-perl libxml-simple-perl bsdtar" ;;
299
300
			*) ;;
		esac
301
		# install squid / apache2 on a few nodes only
302
		case $HOSTNAME in
303
			profitbricks-build1-a*|profitbricks-build10*|codethink-sled16*|osuosl-build167*) DEBS="$DEBS
304
				squid" ;;
305
306
			profitbricks-build7-a*) DEBS="$DEBS
				apache2" ;;
307
308
309
310
311
			*) ;;
		esac
		# notifications are only done from a view nodes
		case $HOSTNAME in
			jenkins|jenkins-test-vm|profitbricks-build*) DEBS="$DEBS
312
313
				kgb-client
				python3-yaml" ;;
314
315
			*) ;;
		esac
316
317
		# needed to run the 2nd reproducible builds nodes in the future...
		case $HOSTNAME in
318
			profitbricks-build5-amd64|profitbricks-build6-i386|profitbricks-build15-amd64|profitbricks-build16-i386) DEBS="$DEBS ntpdate" ;;
319
			codethink-sled9*|codethink-sled11*|codethink-sled13*|codethink-sled15*) DEBS="$DEBS ntpdate" ;;
320
			osuosl-build170-amd64|osuosl-build172-amd64) DEBS="$DEBS ntpdate" ;;
321
322
			*) ;;
		esac
323
		# needed to run coreboot/openwrt/netbsd/fedora jobs
324
		case $HOSTNAME in
325
		osuosl-build171-amd64|osuosl-build172-amd64) DEBS="$DEBS
Holger Levsen's avatar
Holger Levsen committed
326
				bison
327
				ca-certificates
Holger Levsen's avatar
Holger Levsen committed
328
329
330
				cmake
				diffutils
				findutils
331
				fish
Holger Levsen's avatar
Holger Levsen committed
332
333
334
335
336
337
338
339
340
341
342
343
344
				flex
				g++
				gawk
				gcc
				grep
				iasl
				libc6-dev
				libncurses5-dev
				libssl-dev
				locales-all
				kgb-client
				m4
				make
345
346
				python3-clint
				python3-git
347
				python3-pystache
348
				python3-requests
Holger Levsen's avatar
Holger Levsen committed
349
350
				python3-yaml
				subversion
351
				tree
Holger Levsen's avatar
Holger Levsen committed
352
353
				unzip
				util-linux
354
355
				zlib1g-dev
				"
356
357
358
			;;
			*) ;;
		esac
359
360
		# needed to run fdroid jobs
		case $HOSTNAME in
361
			osuosl-build168-amd64) DEBS="$DEBS
362
				androguard
363
				android-sdk
364
365
				bzr
				git-svn
366
				fdroidserver
367
				linux-headers-amd64
368
				mercurial
369
				python3-asn1crypto
370
				python3-babel
371
				python3-mwclient
372
				python3-setuptools
373
				subversion
374
				vagrant
375
				"
376
			;;
377
			*) ;;
378
		esac
379
380
381
		if [ "$HOSTNAME" = "jenkins-test-vm" ] ; then
			# for phil only
			DEBS="$DEBS postfix-pcre"
382
383
			# only needed on the main node
		elif [ "$HOSTNAME" = "jenkins" ] ; then
384
			DEBS="$DEBS ffmpeg python3-popcon dose-extra"
385
386
387
388
		fi
		# mock is needed to build fedora
		if [ "$HOSTNAME" = "osuosl-build171-amd64" ] || [ "$HOSTNAME" = "osuosl-build172-amd64" ] || [ "$HOSTNAME" = "jenkins" ] ; then
			DEBS="$DEBS mock"
389
		fi
390
		# only on main node
391
		if [ "$HOSTNAME" = "jenkins" ] || [ "$HOSTNAME" = "jenkins-test-vm" ] ; then
Holger Levsen's avatar
Holger Levsen committed
392
393
394
395
			MASTERDEBS=" 
				apache2 
				apt-file 
				apt-listchanges 
396
				asciidoc
Holger Levsen's avatar
Holger Levsen committed
397
				binfmt-support 
398
399
				bison
				botch
Holger Levsen's avatar
Holger Levsen committed
400
401
402
403
404
405
406
				build-essential 
				cmake 
				cron-apt 
				csvtool 
				dnsmasq-base 
				dstat 
				figlet 
Holger Levsen's avatar
Holger Levsen committed
407
				flex
Holger Levsen's avatar
Holger Levsen committed
408
				gawk 
409
				ghc
410
				git-lfs
411
				git-notifier 
Holger Levsen's avatar
Holger Levsen committed
412
413
414
415
				gocr 
				graphviz 
				iasl 
				imagemagick 
416
417
				ip2host
				jekyll
418
				jenkins-job-builder
419
				jq
420
				kgb-client
Holger Levsen's avatar
Holger Levsen committed
421
422
423
424
425
426
427
428
429
				libcap2-bin 
				libfile-touch-perl 
				libguestfs-tools 
				libjson-rpc-perl 
				libsoap-lite-perl 
				libxslt1-dev 
				moreutils 
				mr 
				mtr-tiny 
430
				munin
Holger Levsen's avatar
Holger Levsen committed
431
				ntp 
432
				obfs4proxy
Holger Levsen's avatar
Holger Levsen committed
433
434
				openbios-ppc 
				openbios-sparc 
435
				openjdk-11-jre-headless
436
				pandoc
437
				postgresql
438
				postgresql-autodoc
439
				postgresql-client 
Holger Levsen's avatar
Holger Levsen committed
440
441
442
				poxml 
				procmail 
				python3-debian 
443
				python3-pystache
444
				python3-requests
445
				python3-rpy2 
446
447
448
				python3-sqlalchemy
				python3-xdg
				python3-yaml
Holger Levsen's avatar
Holger Levsen committed
449
450
451
				python-arpy 
				python-hachoir-metadata 
				python-lzma 
452
				python-pil
Holger Levsen's avatar
Holger Levsen committed
453
454
455
456
457
458
459
460
461
				python-pip 
				python-setuptools 
				python-twisted 
				python-yaml 
				qemu 
				qemu-kvm 
				qemu-system-x86 
				qemu-user-static 
				radvd 
462
463
				ruby-rspec
				rustc
Holger Levsen's avatar
Holger Levsen committed
464
465
466
467
				seabios 
				shorewall 
				shorewall6 
				sqlite3 
468
				syslinux
469
				systemd
470
				thin-provisioning-tools
471
				tor
Holger Levsen's avatar
Holger Levsen committed
472
				vncsnapshot 
473
474
				vnstat
				whohas
Holger Levsen's avatar
Holger Levsen committed
475
				x11-apps 
476
				xtightvncviewer
477
				xvfb
478
				xvkbd
479
480
				zutils
				"
481
482
483
		else
			MASTERDEBS=""
		fi
484
		$UP2DATE || sudo apt-get update
485
		$UP2DATE || sudo apt-get install $DEBS $MASTERDEBS
486
487
488
489
490
491
		# for varying kernels:
		# - we use bpo kernels on pb-build5+15 (and the default amd64 kernel on pb-build6+16-i386)
		# - we also use the bpo kernel on osuosl-build172 (but not osuosl-build171)
		# - this is done as a seperate step as bpo kernels are frequently uninstallable when upgraded on bpo
		if [ "$HOSTNAME" = "profitbricks-build5-amd64" ] || [ "$HOSTNAME" = "profitbricks-build15-amd64" ] \
			|| [ "$HOSTNAME" = "osuosl-build172-amd64" ] ; then
492
493
			#sudo apt install linux-image-amd64/stretch-backports || true # backport kernels are frequently uninstallable...
			:
494
495
496
497
498
499
		elif [ "$HOSTNAME" = "profitbricks-build6-i386" ] || [ "$HOSTNAME" = "profitbricks-build16-i386" ] \
			|| [ "$HOSTNAME" = "profitbricks-build2-i386" ] || [ "$HOSTNAME" = "profitbricks-build12-i386" ] ; then
			# we dont vary the kernel on i386 atm, see #875990 + #876035
			sudo apt install linux-image-amd64:amd64
		elif [ "$HOSTNAME" = "osuosl-build169-amd64" ] || [ "$HOSTNAME" = "osuosl-build170-amd64" ] ; then
			# Arch Linux builds latest stuff which sometimes (eg, currentlt Qt) needs newer kernel to build...
500
501
			#sudo apt install linux-image-amd64/stretch-backports || true # backport kernels are frequently uninstallable...
			:
502
		fi
Edward Betts's avatar
Edward Betts committed
503
		# don't (re-)install pbuilder if it's on hold
504
		if [ "$(dpkg-query -W -f='${db:Status-Abbrev}\n' pbuilder)" != "hi " ] ; then
505
			$UP2DATE || sudo apt-get install pbuilder
506
		fi
507
		# remove unattended-upgrades if it's installed
508
		if [ "$(dpkg-query -W -f='${db:Status-Abbrev}\n' unattended-upgrades 2>/dev/null || true)" = "ii "  ] ; then
509
			 sudo apt-get -y purge unattended-upgrades
510
		fi
511
		sudo apt-get clean
Holger Levsen's avatar
Holger Levsen committed
512
		explain "packages installed."
513
	else
Holger Levsen's avatar
Holger Levsen committed
514
		explain "no new packages to be installed."
515
	fi
516
fi
517

518
#
Holger Levsen's avatar
Holger Levsen committed
519
# deploy package configuration in /etc and /usr
520
#
Holger Levsen's avatar
Holger Levsen committed
521
cd $BASEDIR
522
523
524
525
526
527
528
529
530
for h in common common-amd64 common-i386 common-arm64 common-armhf "$HOSTNAME" ; do
	# $HOSTNAME has precedence over common-$DPKG_ARCH over common
	case $h in
		common-amd64) [ $DPKG_ARCH = "amd64" ] || continue ;;
		common-i386)  [ $DPKG_ARCH = "i386" ] || continue ;;
		common-arm64) [ $DPKG_ARCH = "arm64" ] || continue ;;
		common-armhf) [ $DPKG_ARCH = "armhf" ] || continue ;;
		*) ;;
	esac
531
532
	if [ -d "hosts/$h/etc/sudoers.d/" ]; then
		for f in "hosts/$h/etc/sudoers.d/"* ; do
533
			/usr/sbin/visudo -c -f "$f" > /dev/null
534
535
536
		done
	fi
	for d in etc usr ; do
Mattia Rizzolo's avatar
Mattia Rizzolo committed
537
		if [ -d "hosts/$h/$d" ]; then
538
			sudo cp --preserve=mode,timestamps -r "hosts/$h/$d/"* "/$d"
539
540
541
		fi
	done
done
542
543
# we ship one or two service files…
sudo systemctl daemon-reload &
544
545
546
547
548

#
# more configuration than a simple cp can do
#
sudo chown root.root /etc/sudoers.d/jenkins ; sudo chmod 700 /etc/sudoers.d/jenkins
549
sudo chown root.root /etc/sudoers.d/jenkins-adm ; sudo chmod 700 /etc/sudoers.d/jenkins-adm
Holger Levsen's avatar
Holger Levsen committed
550
[ -f /etc/mailname ] || ( echo $HOSTNAME.debian.net | sudo tee /etc/mailname )
551

552
if [ "$HOSTNAME" = "jenkins" ] || [ "$HOSTNAME" = "profitbricks-build7-amd64" ] ; then
553
	if ! $UP2DATE || [ $BASEDIR/hosts/$HOSTNAME/etc/apache2 -nt $STAMP ]  ; then
554
555
556
557
558
559
560
561
562
		if [ ! -e /etc/apache2/mods-enabled/proxy.load ] ; then
			sudo a2enmod proxy
			sudo a2enmod proxy_http
			sudo a2enmod rewrite
			sudo a2enmod ssl
			sudo a2enmod headers
			sudo a2enmod macro
			sudo a2enmod filter
		fi
563
564
565
		if [ "$HOSTNAME" = "jenkins" ] ; then
			sudo a2ensite -q jenkins.debian.net
			sudo chown jenkins-adm.jenkins-adm /etc/apache2/sites-enabled/jenkins.debian.net.conf
566
			sudo a2enconf -q munin
567
568
569
570
		else # "$HOSTNAME" = "profitbricks-build7-amd64"
			sudo a2ensite -q buildinfos.debian.net
			sudo chown jenkins-adm.jenkins-adm /etc/apache2/sites-enabled/buildinfos.debian.net.conf
		fi
571
572
573
		# for reproducible.d.n url rewriting:
		[ -L /var/www/userContent ] || sudo ln -sf /var/lib/jenkins/userContent /var/www/userContent
		sudo service apache2 reload
574
575
576
	fi
fi

577
if ! $UP2DATE || [ $BASEDIR/hosts/$HOSTNAME/etc/munin -nt $STAMP ] ; then
578
	cd /etc/munin/plugins
579
	sudo rm -f postfix_* open_inodes interrupts irqstats threads proc_pri vmstat if_err_* exim_* netstat fw_forwarded_local fw_packets forks open_files users nfs* iostat_ios ntp* df_abs 2>/dev/null
580
	case $HOSTNAME in
581
			profitbricks-build1-a*|profitbricks-build10*|codethink-sled16*|osuosl-build167*) [ -L /etc/munin/plugins/squid_cache ] || for i in squid_cache squid_objectsize squid_requests squid_traffic ; do sudo ln -s /usr/share/munin/plugins/$i $i ; done ;;
582
583
			*)	;;
	esac
Holger Levsen's avatar
Holger Levsen committed
584
585
586
587
	case $HOSTNAME in
			jenkins) [ -L /etc/munin/plugins/postfix_mailstats ] || for i in postfix_mailstats postfix_mailvolume postfix_mailqueue ; do sudo ln -s /usr/share/munin/plugins/$i $i ; done ;;
			*)	;;
	esac
588
589
590
	if [ "$HOSTNAME" != "jenkins" ] && [ -L /etc/munin/plugins/iostat ] ; then
		sudo rm /etc/munin/plugins/iostat
	fi
591
	if ( [ "$HOSTNAME" = "jenkins" ] || [ "$HOSTNAME" = "profitbricks-build7-amd64" ] ) && [ ! -L /etc/munin/plugins/apache_accesses ] ; then
592
		for i in apache_accesses apache_volume ; do sudo ln -s /usr/share/munin/plugins/$i $i ; done
593
		sudo ln -s /usr/share/munin/plugins/loggrep jenkins_oom
594
	fi
595
596
	# this is a hack to work around (rare) problems with restarting munin-node...
	sudo service munin-node restart || sudo service munin-node restart || sudo service munin-node restart
597
fi
598
599
600
601

# add some users to groups after packages have been installed
if ! $UP2DATE ; then
	case $HOSTNAME in
602
		jenkins|osuosl-build169-amd64|osuosl-build170-amd64)
603
604
605
			sudo addgroup --system --gid 300 abuild
			sudo adduser jenkins abuild
			;;
606
607
608
609
610
		osuosl-build173-amd64)		sudo adduser jenkins sbuild ;;
		*) 				;;
	esac
fi
# finally
Holger Levsen's avatar
Holger Levsen committed
611
explain "packages configured."
Holger Levsen's avatar
Holger Levsen committed
612
613
614
615

#
# install the heart of jenkins.debian.net
#
Holger Levsen's avatar
Holger Levsen committed
616
cd $BASEDIR
617
[ -d /srv/jenkins/features ] && sudo rm -rf /srv/jenkins/features
618
# check for bash syntax *before* actually deploying anything
619
shopt -s nullglob
620
for f in bin/*.sh bin/**/*.sh ; do bash -n "$f" ; done
621
shopt -u nullglob
622
for dir in bin logparse mustache-templates ; do
623
624
	sudo mkdir -p /srv/jenkins/$dir
	sudo rsync -rpt --delete $dir/ /srv/jenkins/$dir/
Holger Levsen's avatar
Holger Levsen committed
625
	sudo chown -R jenkins-adm.jenkins-adm /srv/jenkins/$dir
626
done
627
628
HOST_JOBS="hosts/$HOSTNAME/job-cfg"
if [ -e "$HOST_JOBS" ] ; then
629
	sudo -u jenkins-adm rsync -rpt --copy-links --delete "$HOST_JOBS/" /srv/jenkins/job-cfg/
630
else
Philip Hands's avatar
Philip Hands committed
631
632
	# tidying up ... assuming that we don't want clutter on peripheral servers
	[ -d /srv/jenkins/job-cfg ] && sudo rm -rf /srv/jenkins/job-cfg
633
634
fi

635

636
sudo mkdir -p -m 700 /var/lib/jenkins/.ssh
637
sudo chown jenkins.jenkins /var/lib/jenkins/.ssh
638
if [ "$HOSTNAME" = "jenkins" ] ; then
639
640
	sudo -u jenkins install -m 600 jenkins-home/authorized_keys /var/lib/jenkins/.ssh/authorized_keys
	sudo -u jenkins cp jenkins-home/procmailrc /var/lib/jenkins/.procmailrc
641
	sudo -u jenkins cp jenkins-home/offline_nodes /var/lib/jenkins/offline_nodes
642
643
644
else
	sudo cp jenkins-nodes-home/authorized_keys /var/lib/jenkins/.ssh/authorized_keys
fi
645
if [ -f jenkins-nodes-home/authorized_keys.$HOSTNAME ] ; then
646
	cat jenkins-nodes-home/authorized_keys.$HOSTNAME | sudo tee -a /var/lib/jenkins/.ssh/authorized_keys
647
fi
648
sudo -u jenkins cp jenkins-home/gitconfig /var/lib/jenkins/.gitconfig
649
650
sudo -u jenkins cp jenkins-home/ssh_config.in /var/lib/jenkins/.ssh/config
nodes/gen_ssh_config | sudo -u jenkins tee -a /var/lib/jenkins/.ssh/config > /dev/null
651
nodes/gen_known_host_file | sudo tee /etc/ssh/ssh_known_hosts > /dev/null
Holger Levsen's avatar
Holger Levsen committed
652
explain "scripts and configurations for jenkins updated."
653

654
if [ "$HOSTNAME" = "jenkins" ] ; then
Holger Levsen's avatar
Holger Levsen committed
655
	sudo cp -pr README INSTALL TODO CONTRIBUTING d-i-preseed-cfgs /var/lib/jenkins/userContent/
656
	TMPFILE=$(mktemp)
657
	git log | grep ^Author| cut -d " " -f2-|sort -u -f > $TMPFILE
658
	echo "----" >> $TMPFILE
659
	sudo tee /var/lib/jenkins/userContent/THANKS > /dev/null < THANKS.head
660
661
	# samuel, lunar, jelle, josch and phil committed with several committers, only display one
	grep -v -e "samuel.thibault@ens-lyon.org" -e Lunar -e "j.schauer@email.de" -e "mattia@mapreri.org" -e "phil@jenkins-test-vm" -e "jelle@vdwaa.nl" $TMPFILE | sudo tee -a /var/lib/jenkins/userContent/THANKS > /dev/null
662
	rm $TMPFILE
663
	TMPDIR=$(mktemp -d -t update-jdn-XXXXXXXX)
664
	sudo cp -pr userContent $TMPDIR/
Holger Levsen's avatar
Holger Levsen committed
665
666
667
	sudo chown -R jenkins.jenkins $TMPDIR
	sudo cp -pr $TMPDIR/userContent  /var/lib/jenkins/
	sudo rm -r $TMPDIR > /dev/null
668
669
670
671
672
673
674
675
676
	cd /var/lib/jenkins/userContent/
	ASCIIDOC_PARAMS="-a numbered -a data-uri -a iconsdir=/etc/asciidoc/images/icons -a scriptsdir=/etc/asciidoc/javascripts -b html5 -a toc -a toclevels=4 -a icons -a stylesheet=$(pwd)/theme/debian-asciidoc.css"
	[ about.html -nt README ] || asciidoc $ASCIIDOC_PARAMS -o about.html README
	[ todo.html -nt TODO ] || asciidoc $ASCIIDOC_PARAMS -o todo.html TODO
	[ setup.html -nt INSTALL ] || asciidoc $ASCIIDOC_PARAMS -o setup.html INSTALL
	[ contributing.html -nt CONTRIBUTING ] || asciidoc $ASCIIDOC_PARAMS -o contributing.html CONTRIBUTING
	diff THANKS .THANKS >/dev/null || asciidoc $ASCIIDOC_PARAMS -o thanks.html THANKS
	mv THANKS .THANKS
	rm TODO README INSTALL CONTRIBUTING
677
	sudo chown jenkins.jenkins /var/lib/jenkins/userContent/*html
Holger Levsen's avatar
Holger Levsen committed
678
	explain "user content for jenkins updated."
679
fi
680

681
if [ "$HOSTNAME" = "jenkins" ] || [ "$HOSTNAME" = "jenkins-test-vm" ] ; then
682
683
684
685
686
687
	#
	# run jenkins-job-builder to update jobs if needed
	#     (using sudo because /etc/jenkins_jobs is root:root 700)
	#
	cd /srv/jenkins/job-cfg
	for metaconfig in *.yaml.py ; do
Holger Levsen's avatar
Holger Levsen committed
688
689
690
691
692
693
		if [ -f $metaconfig ] ; then
			TMPFILE=$(sudo -u jenkins-adm mktemp)
			./$metaconfig | sudo -u jenkins-adm tee "$TMPFILE" >/dev/null
			if ! sudo -u jenkins-adm cmp -s ${metaconfig%.py} "$TMPFILE" ; then
				sudo -u jenkins-adm mv "$TMPFILE" "${metaconfig%.py}"
			fi
694
695
696
		fi
	done
	for config in *.yaml ; do
697
698
699
700
701
702
703
		# do update, if
		# no stamp file exist or
		# no .py file exists and config is newer than stamp or
		# a .py file exists and .py file is newer than stamp
		if [ ! -f $STAMP ] || \
		 ( [ ! -f $config.py ] && [ $config -nt $STAMP ] ) || \
		 ( [ -f $config.py ] && [ $config.py -nt $STAMP ] ) ; then
704
			echo "$config has changed, executing updates."
705
			$JJB update $config
706
707
		fi
	done
Holger Levsen's avatar
Holger Levsen committed
708
	explain "jenkins jobs updated."
709
fi
710

711
712
713
#
# generate the kgb-client configurations
#
714
if [ "$HOSTNAME" = "jenkins" ] || [ "$HOSTNAME" = "osuosl-build168-amd64" ] || [ "$HOSTNAME" = "osuosl-build171-amd64" ] || [ "$HOSTNAME" = "osuosl-build172-amd64" ] || [ "$HOSTNAME" = "profitbricks-build2-i386" ] || [ "$HOSTNAME" = "profitbricks-build12-i386" ] ; then
715
716
717
	cd $BASEDIR
	KGB_SECRETS="/srv/jenkins/kgb/secrets.yml"
	if [ -f "$KGB_SECRETS" ] && [ $(stat -c "%a:%U:%G" "$KGB_SECRETS") = "640:jenkins-adm:jenkins-adm" ] ; then
Philip Hands's avatar
Philip Hands committed
718
		# the last condition is to assure the files are owned by the right user/team
719
		if [ "$KGB_SECRETS" -nt $STAMP ] || [ "deploy_kgb.py" -nt "$STAMP" ] || [ ! -f $STAMP ] ; then
Philip Hands's avatar
Philip Hands committed
720
721
722
723
			sudo -u jenkins-adm "./deploy_kgb.py"
		else
			explain "kgb-client configuration unchanged, nothing to do."
		fi
724
	else
Philip Hands's avatar
Philip Hands committed
725
726
727
		figlet -f banner Warning
		echo "Warning: $KGB_SECRETS either does not exist or has bad permissions. Please fix. KGB configs not generated"
		echo "We expect the secrets file to be mode 640 and owned by jenkins-adm:jenkins-adm."
Holger Levsen's avatar
Holger Levsen committed
728
729
		echo "/srv/jenkins/kgb should be mode 755 and owned by jenkins-adm:root."
		echo "/srv/jenkins/kgb/client-status should be mode 755 and owned by jenkins:jenkins."
730
	fi
731
	KGB_STATUS="/srv/jenkins/kgb/client-status"
732
733
	sudo mkdir -p $KGB_STATUS
	sudo chown jenkins:jenkins $KGB_STATUS
734
735
fi

736
737
738
#
# Create GPG key for jenkins user if they do not already exist (eg. to sign .buildinfo files)
#
739
if sudo -H -u jenkins gpg --with-colons --fixed-list-mode --list-secret-keys | cut -d: -f1 | grep -qsFx 'sec' >/dev/null 2>&1 ; then
Holger Levsen's avatar
Holger Levsen committed
740
	: # not generating GPG key as one already exists for jenkins user
741
else
Holger Levsen's avatar
Holger Levsen committed
742
	explain "$(date) - Generating GPG key for jenkins user."
743

744
	sudo -H -u jenkins gpg --no-tty --batch --gen-key <<EOF
745
746
747
Key-Type: RSA
Key-Length: 4096
Key-Usage: sign
748
Name-Real: $HOSTNAME
749
750
751
752
753
754
Name-Comment: Automatically generated key for signing .buildinfo files
Expire-Date: 0
%no-ask-passphrase
%no-protection
%commit
EOF
755

756
	GPG_KEY_ID="$(sudo -H -u jenkins gpg --with-colons --fixed-list-mode --list-secret-keys | grep '^sec' | cut -d: -f5 | tail -n1)"
757
758
759
760
761
762

	if [ "$GPG_KEY_ID" = "" ]
	then
		explain "$(date) - Generated GPG key but could not parse key ID"
	else
		explain "$(date) - Generated GPG key $GPG_KEY_ID - submitting to keyserver"
763
		sudo -H -u jenkins gpg --send-keys $GPG_KEY_ID
764
	fi
765
766
fi

Holger Levsen's avatar
Holger Levsen committed
767
768
769
770
771
#
# There's always some work left...
#	echo FIXME is ignored so check-jobs scripts can output templates requiring manual work
#
if [ "$HOSTNAME" = "jenkins" ] || [ "$HOSTNAME" = "jenkins-test-vm" ] ; then
772
	TMPFILE=$(mktemp)
773
	rgrep FI[X]ME $BASEDIR/* | grep -v $BASEDIR/TODO | grep -v echo > $TMPFILE || true
Holger Levsen's avatar
Holger Levsen committed
774
775
	if [ -s $TMPFILE ] ; then
		echo
776
		cat $TMPFILE
Holger Levsen's avatar
Holger Levsen committed
777
778
		echo
	fi
779
	rm -f $TMPFILE
Holger Levsen's avatar
Holger Levsen committed
780
781
fi

782
#
783
# almost finally…
784
#
785
sudo touch $STAMP	# so on the next run, only configs newer than this file will be updated
Holger Levsen's avatar
Holger Levsen committed
786
explain "$(date) - finished deployment."
787

788
# finally!
789
case $HOSTNAME in
790
	# set time back to the future
791
	profitbricks-build5-amd64|profitbricks-build6-i386|profitbricks-build15-amd64|profitbricks-build16-i386)
792
		disable_dsa_check_packages
793
794
		sudo date --set="+398 days +6 hours + 23 minutes"
		;;
795
	codethink-sled9*|codethink-sled11*|codethink-sled13*|codethink-sled15*)
796
		disable_dsa_check_packages
797
798
		sudo date --set="+398 days +6 hours + 23 minutes"
		;;
799
	osuosl-build170-amd64|osuosl-build172-amd64)
800
801
802
		disable_dsa_check_packages
		sudo date --set="+398 days +6 hours + 23 minutes"
		;;
803
	jenkins)
804
		# notify irc on updates of jenkins.d.n
805
806
		MESSAGE="jenkins.d.n updated to $(cd $BASEDIR ; git describe --always)."
		kgb-client --conf /srv/jenkins/kgb/debian-qa.conf --relay-msg "$MESSAGE"
Holger Levsen's avatar
Holger Levsen committed
807
		;;
808
809
	*)	;;
esac
810
811
812
813

echo
figlet ok
echo
Holger Levsen's avatar
Holger Levsen committed
814
815
echo "__$HOSTNAME=ok__"