summaryrefslogtreecommitdiff
path: root/app-admin/webmin/files/gentoo-setup
blob: 680dfbb5303b9b43b5471f79e4c31163a184e42e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
#!/bin/sh
# gentoo-setup.sh
#
# Version 1.2
#
# A modified original Webmin setup.sh script to comply with Gentoo specifics
#
# Modification done by: PhobosK <phobosk@kbfx.net>
#
# This script runs after the webmin archive is installed, and in the pkg_config() phase.
# It does setup the various config files of Webmin depending on if it is
# a new install, an upgrade or a reset.

LANG=
export LANG

if [ -z ${wadir} ]; then
	echo "You can't run this script outside of the 'emerge --config app-admin/webmin' command."
	exit 1
fi

# All things we do is from the Webmin install dir - $wadir
cd $wadir


# Are we hard resetting everything?
# If yes, we do:
# 1. Run the specific Webmin $wadir/run-uninstalls.pl
#	 It runs all uninstall.pl files in every module's folder.
#	 They delete all the set specific Webmin cron jobs.
#	 If bumping you should go through these files using the command:
#	 find . -name uninstall.pl -exec cat {} \; -print
# 2. Delete the whole /etc/webmin content, keeping only the gentoo .keep_* files
if [ "$reset" = "hard" ]; then
	echo "Running Webmin's specific uninstall procedures.. (Please ignore any possible errors)"
	(WEBMIN_CONFIG=$config_dir WEBMIN_VAR=$var_dir LANG= "$wadir/run-uninstalls.pl")
	echo "..done"
	echo ""

	echo "Deleting the content of user's config folder: $config_dir .."
	find $config_dir ! -name '.keep_*' -delete 2>/dev/null
	echo "..done"
	echo ""
fi


# Are we soft resetting?
# If yes we do:
# - Delete the $config_dir/config file so we get new config values
if [ "$reset" = "soft" ]; then
	echo "Deleting the user's $config_dir/config file.."
	if [ -f "$config_dir/config" ]; then
		rm -f "$config_dir/config"
	fi
	echo "..done"
	echo ""
fi


# Get all available modules of this version
allmods=`echo */module.info | sed -e 's/\/module.info//g'`

# Get current Webmin version
ver=`cat "$wadir/version"`

if [ -r "$config_dir/config" ]; then
	upgrading=1
fi


# Check if upgrading from an old version
if [ "$upgrading" = 1 ]; then
	echo "Updating existant Webmin's config files.."

	# Get current var path
	if [ -r "$config_dir/var-path" ]; then
		_var_dir=`cat $config_dir/var-path`
		if [ -n ${_var_dir} ]; then
			var_dir=${_var_dir}
		fi
	fi

	# Get current perl path
	if [ -r "$config_dir/perl-path" ]; then
		_perl=`cat $config_dir/perl-path`
		if [ -n ${_perl} ]; then
			perl=${_perl}
		fi
	fi

	# Get old os name and version
	os_type=`grep "^os_type=" $config_dir/config | sed -e 's/os_type=//g'`
	os_version=`grep "^os_version=" $config_dir/config | sed -e 's/os_version=//g'`
	real_os_type=`grep "^real_os_type=" $config_dir/config | sed -e 's/real_os_type=//g'`
	real_os_version=`grep "^real_os_version=" $config_dir/config | sed -e 's/real_os_version=//g'`

	# Get port, ssl, no_ssl2, no_ssl3, ssl_redirect, no_sslcompression, ssl_honorcipherorder, no_tls1, no_tls1_1 and keyfile
	port=`grep "^port=" $config_dir/miniserv.conf | sed -e 's/port=//g'`
	ssl=`grep "^ssl=" $config_dir/miniserv.conf | sed -e 's/ssl=//g'`
	no_ssl2=`grep "^no_ssl2=" $config_dir/miniserv.conf | sed -e 's/no_ssl2=//g'`
	no_ssl3=`grep "^no_ssl3=" $config_dir/miniserv.conf | sed -e 's/no_ssl3=//g'`
	ssl_redirect=`grep "^ssl_redirect=" $config_dir/miniserv.conf | sed -e 's/ssl_redirect=//g'`
	ssl_honorcipherorder=`grep "^ssl_honorcipherorder=" $config_dir/miniserv.conf | sed -e 's/ssl_honorcipherorder=//g'`
	no_sslcompression=`grep "^no_sslcompression=" $config_dir/miniserv.conf | sed -e 's/no_sslcompression=//g'`
	no_tls1=`grep "^no_tls1=" $config_dir/miniserv.conf | sed -e 's/no_tls1=//g'`
	no_tls1_1=`grep "^no_tls1_1=" $config_dir/miniserv.conf | sed -e 's/no_tls1_1=//g'`
	keyfile=`grep "^keyfile=" $config_dir/miniserv.conf | sed -e 's/keyfile=//g'`

	# Update ACLs
	$perl "$wadir/newmods.pl" $config_dir $allmods

	# Update miniserv.conf with new root directory, mime types file and server info
	grep -v "^root=" $config_dir/miniserv.conf | grep -v "^mimetypes=" | grep -v "^server=" >$tempdir/$$.miniserv.conf
	mv $tempdir/$$.miniserv.conf $config_dir/miniserv.conf
	echo "root=$wadir" >> $config_dir/miniserv.conf
	echo "mimetypes=$wadir/mime.types" >> $config_dir/miniserv.conf
	echo "server=MiniServ/$ver" >> $config_dir/miniserv.conf
	grep logout= $config_dir/miniserv.conf >/dev/null
	if [ $? != "0" ]; then
		echo "logout=$config_dir/logout-flag" >> $config_dir/miniserv.conf
	fi

	# Remove old cache of module infos
	rm -f $config_dir/module.infos.cache
	echo "..done"
	echo ""
else
	# Create webserver's new config files
	echo "Creating Webmin's new config files.."

	echo $perl > $config_dir/perl-path
	echo $var_dir > $config_dir/var-path

	# Create a totally new conf file
	cfile=$config_dir/miniserv.conf
	echo "port=$port" > $cfile
	echo "root=$wadir" >> $cfile
	echo "mimetypes=$wadir/mime.types" >> $cfile
	echo "addtype_cgi=internal/cgi" >> $cfile
	echo "realm=Webmin Server" >> $cfile
	echo "logfile=$var_dir/miniserv.log" >> $cfile
	echo "errorlog=$var_dir/miniserv.error" >> $cfile
	echo "pidfile=$pidfile" >> $cfile
	echo "logtime=168" >> $cfile
	echo "ppath=$ppath" >> $cfile
	echo "ssl=$ssl" >> $cfile
	echo "no_ssl2=$no_ssl2" >> $cfile
	echo "no_ssl3=$no_ssl3" >> $cfile
	echo "ssl_redirect=$ssl_redirect" >> $cfile
	echo "ssl_honorcipherorder=$ssl_honorcipherorder" >> $cfile
	echo "no_sslcompression=$no_sslcompression" >> $cfile
	echo "no_tls1=$no_tls1" >> $cfile
	echo "no_tls1_1=$no_tls1_1" >> $cfile
	echo "keyfile=$keyfile" >> $cfile
	echo "env_WEBMIN_CONFIG=$config_dir" >> $cfile
	echo "env_WEBMIN_VAR=$var_dir" >> $cfile
	echo "atboot=$atboot" >> $cfile
	echo "logout=$config_dir/logout-flag" >> $cfile
	echo "listen=10000" >> $cfile
	echo "denyfile=\\.pl\$" >> $cfile
	echo "log=1" >> $cfile
	echo "blockhost_failures=5" >> $cfile
	echo "blockhost_time=60" >> $cfile
	echo "syslog=1" >> $cfile
	echo "session=1" >> $cfile
	echo "premodules=WebminCore" >> $cfile
	echo "server=MiniServ/$ver" >> $cfile

	# Append package-specific info to config file.
	# miniserv-conf can be created by upstream or by us in src_install phase (see there).
	if [ -f "$wadir/miniserv-conf" ]; then
		cat "$wadir/miniserv-conf" >>$cfile
	fi

	# Create the default user allowed to login - root only
	login="root"

	if [ -r /etc/shadow ]; then
		#crypt=`grep "^root:" /etc/shadow | cut -f 2 -d :`
		crypt=x
	else
		crypt=`grep "^root:" /etc/passwd | cut -f 2 -d :`
	fi

	ufile=$config_dir/miniserv.users
	echo "$login:$crypt:0" > $ufile
	chmod 600 $ufile


	echo "userfile=$ufile" >> $cfile
	chmod 600 $cfile
	echo "..done"
	echo ""

	echo "Creating access control file.."
	afile=$config_dir/webmin.acl
	echo "$login: $allmods" > $afile
	chmod 600 $afile
	echo "..done"
	echo ""
fi


# Create start, stop, restart and reload Gentoo compliant Webmin scripts
# We use sys-apps/openrc functions which is already pulled by sys-apps/baselayout
# or systemctl if we run under systemd
echo "Creating start and stop scripts.."
rm -f $config_dir/{start,stop,restart,reload}

# The start script in /etc/webmin (Gentoo compliant)
cat <<END >>"$config_dir/start"
#!/bin/sh

if [ ! -f "${pidfile}" ]; then
	if [[ -d /run/systemd/system ]] ; then
		systemctl start webmin.service
	else
		rc-service --ifexists -- webmin start
	fi
fi
END

# The stop script in /etc/webmin (Gentoo compliant)
cat <<END >>"$config_dir/stop"
#!/bin/sh

if [[ -d /run/systemd/system ]] ; then
	systemctl stop webmin.service
else
	rc-service --ifexists -- webmin --ifstarted stop
fi
END

# The restart script in /etc/webmin (Gentoo compliant)
cat <<END >>"$config_dir/restart"
#!/bin/sh

if [[ -d /run/systemd/system ]] ; then
	systemctl try-restart webmin.service
else
	rc-service --ifexists -- webmin --ifstarted restart
fi
END

# The reload script in /etc/webmin (Gentoo compliant)
cat <<END >>"$config_dir/reload"
#!/bin/sh

if [[ -d /run/systemd/system ]] ; then
	systemctl reload-or-try-restart webmin.service
else
	rc-service --ifexists -- webmin --ifstarted reload
fi
END

chmod 755 $config_dir/{start,stop,restart,reload}
echo "..done"
echo ""


if [ "$upgrading" = 1 ]; then
	echo "Updating other config files.."
else
	echo "Copying other config files.."
fi

# This just copies and merges the Webmin's release config files, with user's in the /etc/webmin folder
newmods=`$perl "$wadir/copyconfig.pl" "$os_type/$real_os_type" "$os_version/$real_os_version" "$wadir" $config_dir "" $allmods`
if [ "$upgrading" != 1 ]; then
	# Store the OS and version
	echo "os_type=$os_type" >> $config_dir/config
	echo "os_version=$os_version" >> $config_dir/config
	echo "real_os_type=$real_os_type" >> $config_dir/config
	echo "real_os_version=$real_os_version" >> $config_dir/config

	# Turn on logging by default
	echo "log=1" >> $config_dir/config

	# Disallow unknown referers by default
	echo "referers_none=1" >>$config_dir/config
else
	# one-off hack to set log variable in config from miniserv.conf
	grep log= $config_dir/config >/dev/null
	if [ "$?" = "1" ]; then
		grep log= $config_dir/miniserv.conf >> $config_dir/config
		grep logtime= $config_dir/miniserv.conf >> $config_dir/config
		grep logclear= $config_dir/miniserv.conf >> $config_dir/config
	fi

	# Disallow unknown referers if not set
	grep referers_none= $config_dir/config >/dev/null
	if [ "$?" != "0" ]; then
		echo "referers_none=1" >>$config_dir/config
	fi
fi
echo $ver > $config_dir/version
echo "..done"
echo ""

# Set passwd_ fields in miniserv.conf from global config
for field in passwd_file passwd_uindex passwd_pindex passwd_cindex passwd_mindex; do
	grep $field= $config_dir/miniserv.conf >/dev/null
	if [ "$?" != "0" ]; then
		grep $field= $config_dir/config >> $config_dir/miniserv.conf
	fi
done
grep passwd_mode= $config_dir/miniserv.conf >/dev/null
if [ "$?" != "0" ]; then
	echo passwd_mode=0 >> $config_dir/miniserv.conf
fi

grep ssl_honorcipherorder= $config_dir/miniserv.conf >/dev/null
if [ "$?" != "0" ]; then
	echo ssl_honorcipherorder=1 >> $config_dir/miniserv.conf
fi

# Disable SSL compression to defeat BEAST attack
grep no_sslcompression= $config_dir/miniserv.conf >/dev/null
if [ "$?" != "0" ]; then
	echo no_sslcompression=1 >> $config_dir/miniserv.conf
fi

# Tighten SSL security
grep no_ssl2= $config_dir/miniserv.conf >/dev/null
if [ "$?" != "0" ]; then
	echo no_ssl2=1 >> $config_dir/miniserv.conf
fi

grep no_ssl3= $config_dir/miniserv.conf >/dev/null
if [ "$?" != "0" ]; then
	echo no_ssl3=1 >> $config_dir/miniserv.conf
fi

grep no_tls1= $config_dir/miniserv.conf >/dev/null
if [ "$?" != "0" ]; then
    echo no_tls1=1 >> $config_dir/miniserv.conf
fi

grep no_tls1_1= $config_dir/miniserv.conf >/dev/null
if [ "$?" != "0" ]; then
    echo no_tls1_1=1 >> $config_dir/miniserv.conf
fi

# Make Perl crypt MD5 the default
grep md5pass= $config_dir/config >/dev/null
if [ "$?" != "0" ]; then
	echo md5pass=1 >> $config_dir/config
fi

# Set a special theme if none was set before
if [ "$theme" = "" ]; then
	theme=`cat "$wadir/defaulttheme" 2>/dev/null`
fi
oldthemeline=`grep "^theme=" $config_dir/config`
oldtheme=`echo $oldthemeline | sed -e 's/theme=//g'`
if [ "$theme" != "" ] && [ "$oldthemeline" = "" ] && [ -d "$wadir/$theme" ]; then
	themelist=$theme
fi

# Set a special overlay if none was set before
if [ "$overlay" = "" ]; then
	overlay=`cat "$wadir/defaultoverlay" 2>/dev/null`
fi
if [ "$overlay" != "" ] && [ "$theme" != "" ] && [ -d "$wadir/$overlay" ]; then
	themelist="$themelist $overlay"
fi

# Apply the theme and maybe overlay
if [ "$themelist" != "" ]; then
	echo "theme=$themelist" >> $config_dir/config
	echo "preroot=$themelist" >> $config_dir/miniserv.conf
fi

# If the old blue-theme is still in use, change it (new in 1.730)
oldtheme=`grep "^theme=" $config_dir/config | sed -e 's/theme=//g'`
if [ "$oldtheme" = "blue-theme" ]; then
   sed -i -e 's/theme=blue-theme/theme=gray-theme/g' $config_dir/config
   sed -i -e 's/preroot=blue-theme/preroot=gray-theme/g' $config_dir/miniserv.conf
fi

# Set the product field in the global config
grep product= $config_dir/config >/dev/null
if [ "$?" != "0" ]; then
	echo product=webmin >> $config_dir/config
fi

# If password delays are not specifically disabled, enable them
grep passdelay= $config_dir/miniserv.conf >/dev/null
if [ "$?" != "0" ]; then
	echo passdelay=1 >> $config_dir/miniserv.conf
fi


echo "Changing ownership and permissions.."
# Make all config dirs non-world-readable
for m in $newmods; do
	chown -R root:root $config_dir/$m
	chmod -R og-rw $config_dir/$m
done

# Make miniserv config files non-world-readable
for f in miniserv.conf miniserv.users; do
	chown -R root:root $config_dir/$f
	chmod -R og-rw $config_dir/$f
done
chmod +r $config_dir/version

# Fix up bad permissions from some older installs
for m in ldap-client ldap-server ldap-useradmin mailboxes mysql postgresql servers virtual-server; do
	if [ -d "$config_dir/$m" ]; then
		chown root:root $config_dir/$m
		chmod og-rw $config_dir/$m
		chmod og-rw $config_dir/$m/config 2>/dev/null
	fi
done
echo "..done"
echo ""


# This executes all postinstall.pl for every module
# If you do bump, you should look at the specific changes they do with this command in root folder:
# find . -name postinstall.pl -exec cat {} \; -print
# Generally they are safe to run 'cause they change only user's config in /etc/webmin
# or setup some cron jobs
if [ "$nopostinstall" = "" ]; then
	echo "Running postinstall scripts.. (Please ignore any possible errors)"
	(cd "$wadir" ; WEBMIN_CONFIG=$config_dir WEBMIN_VAR=$var_dir "$wadir/run-postinstalls.pl")
	echo "..done"
	echo ""
fi

# Enable background collection
if [ "$upgrading" != 1 -a -r $config_dir/system-status/enable-collection.pl ]; then
	echo "Enabling background status collection.. (Please ignore any possible errors)"
	$config_dir/system-status/enable-collection.pl 5
	echo "..done"
	echo ""
fi