Subversion Repositories livecd

Rev

Rev 138 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 beyerle@PS 1
#!/bin/bash
2
#
3
# Fix things during bootup - run last 
128 beyerle@PS 4
# called at the end of /etc/rc.d/rc.local
1 beyerle@PS 5
#
6
# Urs Beyerle, PSI
7
#
8
 
9
### -----------------------------------------------------------
10
### definitions
11
### -----------------------------------------------------------
12
 
13
# dir of mounted live system: /$MOUNTDIR/live
14
MOUNTDIR=livecd
15
 
16
# source functions
17
. /$MOUNTDIR/live/liblinuxlive
18
. /etc/init.d/functions
19
 
71 beyerle@PS 20
# defaults for xorg.conf
21
XORG_CONF=/etc/X11/xorg.conf
73 beyerle@PS 22
 
71 beyerle@PS 23
HSYNC_DEFAULT="30.0-80.0"
24
VSYNC_DEFAULT="50.0-90.0"
73 beyerle@PS 25
SCREEN_DEFAULT="1400x1050"
26
 
71 beyerle@PS 27
MODES_DEFAULT='"2048x1536" "1920x1200" "1600x1200" "1400x1050" "1280x1024" "1280x960" "1280x800" "1152x864" "1152x768" "1024x768" "800x600" "640x480"'
1 beyerle@PS 28
 
71 beyerle@PS 29
 
1 beyerle@PS 30
### -----------------------------------------------------------
31
### Get boot parameters
32
### -----------------------------------------------------------
33
 
34
# root on NFS?
35
NFSROOT=$( cmdline_value nfsroot )
36
 
37
# NFS Server
38
NFSSERVER=$( echo $NFSROOT | cut -d":" -f1 )
39
 
40
# no local user?
41
NOLOCAL=$( cmdline_parameter nolocal )
42
 
43
# no root user?
44
NOROOT=$( cmdline_parameter noroot )
45
 
46
# no localadmin?
47
NOADMIN=$( cmdline_parameter noadmin )
48
LocalAdminGroup=localadmin
49
 
50
# set password
51
PASSWD=$( cmdline_value passwd )
52
[ ! $PASSWD ] && PASSWD=$( cmdline_value pw )
53
 
128 beyerle@PS 54
# no password = empty password
1 beyerle@PS 55
NOPASSWD=$( cmdline_parameter nopasswd )
56
 
57
# keyboard layout (kb= or keyboard=)
58
KEYBOARD=$( cmdline_value keyboard )
59
KB=$( cmdline_value kb )
60
 
61
# PSI setup?
62
PSI=$( cmdline_parameter psi )
63
 
64
# cups server
65
CUPS=$( cmdline_value cups )
66
 
67
# failsafe X server
68
SIMPLEX=$( cmdline_parameter simplex )
69
 
70
# NVIDIA driver
71
NVIDIA=$( cmdline_parameter nvidia )
132 beyerle@PS 72
[ "$XDRIVER" = "nvidia" ] && NVIDIA=nvidia
1 beyerle@PS 73
 
74
# force NO NVIDIA driver - will overwite NVIDIA option
75
NONVIDIA=$( cmdline_parameter nonvidia )
76
 
77
# VESA driver
78
VESA=$( cmdline_parameter vesa )
79
 
80
# force to use a video driver ?
81
XDRIVER=$( cmdline_value xdriver )
82
 
83
# Xserver configurations
84
HSYNC=$( cmdline_value hsync )
85
VSYNC=$( cmdline_value vsync )
86
SCREEN=$( cmdline_value screen )
87
 
88
# no SWAP
89
NOSWAP=$( cmdline_parameter noswap )
90
 
91
# should we auto mount all found devices?
92
AUTOMOUNT=$( cmdline_parameter automount )
93
if [ $AUTOMOUNT ]; then
94
    MOUNTOPT="auto,users"
95
else
96
    MOUNTOPT="noauto,users,ro"
97
fi
98
 
99
# folder where we find data which was previously stored
128 beyerle@PS 100
# (can be on an usbstick or harddisk partition)
132 beyerle@PS 101
SAVEFOLDER=SL_LIVECD
1 beyerle@PS 102
 
103
# local home partition?
104
# (e.g. /dev/hda1, /dev/hda1:/my_home)
105
HOMELOCAL=$( cmdline_value home )
106
 
128 beyerle@PS 107
# fast booting?
1 beyerle@PS 108
FASTBOOT=$( cmdline_parameter fastboot )
109
 
110
# start afs?
111
AFS=$( cmdline_parameter afs )
112
 
113
# or force no afs
114
[ $( cmdline_parameter noafs ) ] && AFS=""
115
 
116
# turn of sound (volume=0)
117
NOSOUND=$( cmdline_parameter nosound )
118
 
119
# local user name?
120
LOCALUSER=$( cmdline_value user )
121
 
122
# hostname?
123
HOSTNAME=$( cmdline_value hostname )
124
 
125
# do we have defined a configuration directory?
126
CONFIG=$( cmdline_value config )
127
 
128
# do not udpate fstab?
129
NOFSTAB=$( cmdline_parameter nofstab )
130
 
131
# kde/gnome as desktop
132
GNOME=$( cmdline_parameter gnome )
133
KDE=$( cmdline_parameter kde )
134
 
78 beyerle@PS 135
# do no fixes (useful for debugging)
136
NOFIX=$( cmdline_parameter nofix )
1 beyerle@PS 137
 
83 beyerle@PS 138
# do not start network
139
NONET=$( cmdline_parameter nonet )
78 beyerle@PS 140
 
83 beyerle@PS 141
 
142
 
1 beyerle@PS 143
### -----------------------------------------------------------
78 beyerle@PS 144
### Functions
145
### -----------------------------------------------------------
146
 
147
reload_soundmodule() {
148
 
149
    ### unload/load sound module for snd-card-X (timing problem?)
150
    if [ ! $NOFIX ]; then
151
	rpm -q alsa-lib | grep el5 >/dev/null
152
	if [ "$?" = "0" ]; then
153
	    # disable kernel messages
154
	    echo "0" > /proc/sys/kernel/printk
155
	    sound_modules=$( grep snd-card- /etc/modprobe.conf | awk ' $1 ~ /alias/ { print $3 }' | tr - _ )
156
	    for module in $sound_modules; do
157
		lsmod | awk '{ print $1 }' | grep $module >/dev/null 2>&1
158
		if [ "$?" = "0" ]; then
159
		    rmmod $module    >/dev/null 2>&1
160
		    modprobe $module >/dev/null 2>&1
161
		fi
162
	    done
163
	    # enable kernel messages
164
	    echo "6" > /proc/sys/kernel/printk
165
	fi
166
    fi
167
}
168
 
169
 
170
### -----------------------------------------------------------
1 beyerle@PS 171
### Improved hardware detection
172
### -----------------------------------------------------------
173
 
78 beyerle@PS 174
### Improved graphic card detection
1 beyerle@PS 175
 
78 beyerle@PS 176
if [ ! $SIMPLEX ] && [ ! $NOFIX ]; then
1 beyerle@PS 177
 
178
    ### Intel Mobile 915GM
179
    lspci | grep -q VGA.*Intel.*Mobile.*915GM
180
    if [ "$?" = "0" ]; then
181
	I915GM=i915gm
182
	[ $XDRIVER ] || XDRIVER=i810
183
    fi
184
 
185
    ### Intel Mobile 855GM
186
    lspci | grep -q VGA.*Intel.*855GM
187
    if [ "$?" = "0" ]; then
188
	I855GM=i855gm
189
    fi
190
fi
191
 
192
 
193
### -----------------------------------------------------------
194
### Main
195
### -----------------------------------------------------------
196
 
132 beyerle@PS 197
### try to load fuse kernel module
1 beyerle@PS 198
modprobe fuse 2>/dev/null
199
 
78 beyerle@PS 200
### reload sound module (first time)
201
reload_soundmodule
202
 
1 beyerle@PS 203
### activate SWAP
204
# delete all swap lines in fstab
205
 sed -i -e "/ swap /d" /etc/fstab
206
# search for swap partition
207
fdisk -l > /var/log/fdisk
208
swap_part=$( fdisk -l 2>/dev/null | grep -i "Linux swap" \
209
            | grep "^/dev/" | cut -f 1 -d " " | head -1 )
210
# add to /etc/fstab and activate SWAP
211
if [ $swap_part ] && [ ! $NOSWAP ]; then
212
    echo "$swap_part               swap                    swap    defaults 0 0" >>/etc/fstab
213
    # activate SWAP
214
    swapoff -a
215
    swapon -a -e
216
fi
217
 
218
### MAC Address of eth0
219
MAC_ETH0=$( ifconfig | grep eth0 | awk '{print $5}' )
220
 
221
### Get CONFIG_FOLDER for this machine from NFS Server (if existing) 
222
#   and copy it to /$MOUNTDIR
223
if [ $NFSSERVER ] && [ $CONFIG ]; then
224
    mkdir -p /mnt/config
225
    echo "Search for configuration files on the server ..."
226
    /etc/init.d/portmap start >/dev/null
227
    mount -t nfs $NFSSERVER:$CONFIG /mnt/config 2>/dev/null
228
    if [ "$?" != "0" ]; then
229
	echo "Could not mount $NFSSERVER:$CONFIG."
230
    else
231
	if [ -d /mnt/config/$MAC_ETH0 ]; then
232
	    CONFIG_FOLDER=/$MOUNTDIR/config
233
	    mkdir -p $CONFIG_FOLDER
234
	    cp -a /mnt/config/$MAC_ETH0/* /$CONFIG_FOLDER/ 2>/dev/null
235
	    if [ "$?" != "0" ]; then
236
		echo "Could not get $NFSSERVER:$CONFIG/$MAC_ETH0"
237
		CONFIG_FOLDER=""
238
	    else
239
		echo "Found configuration files on the server." 
240
	    fi	    
241
	fi
242
	umount /mnt/config
243
    fi
244
    /etc/init.d/portmap stop >/dev/null
245
fi
246
 
247
### search for partitions and update fstab 
248
### and look for $SAVEFOLDER (previously stored data)
249
if [ ! $FASTBOOT ] && [ ! $NOFSTAB ]; then
250
    echo "Update /etc/fstab ..."
251
    # disable kernel messages during mount/unmount
252
    echo 0 > /proc/sys/kernel/printk
253
    DEVICES=$( list_partition_devices )
254
    for DEVICE in $DEVICES; do
255
        # try to mount the device and unmount it. 
256
        # If OK, we can add it to fstab
140 beyerle@PS 257
	DEV=$( basename $DEVICE )
258
	mkdir -p /mnt/$DEV
259
	mount $DEVICE /mnt/$DEV >/dev/null 2>&1
260
	# search for $SAVEFOLDER
261
	if [ -d /mnt/$DEV/$SAVEFOLDER ]; then
262
	    FOUND_RESTORE_DEV=/dev/$DEV
263
	    echo "Found folder '$SAVEFOLDER' on $FOUND_RESTORE_DEV"
264
	fi
265
	# unmount again
266
	umount /mnt/$DEV >/dev/null 2>&1
267
	# if sucsessful add to fstab, if not already in fstab
268
	if [ "$?" = "0" ]; then
269
	    grep -q "^$DEVICE " /etc/fstab
270
	    if [ "$?" != "0" ]; then
271
		echo -e "$DEVICE \t /mnt/$DEV \t auto \t $MOUNTOPT,suid,dev,exec 0 0" >> /etc/fstab
1 beyerle@PS 272
	    fi
140 beyerle@PS 273
	else
274
	    rmdir /mnt/$DEV 2>/dev/null
1 beyerle@PS 275
	fi
276
    done
277
    # enable kernel messages again
278
    echo 6 > /proc/sys/kernel/printk
279
fi
280
 
281
### if $SAVEFOLDER found, set $CONFIG_FOLDER and mount $FOUND_RESTORE_MNT 
282
if [ $FOUND_RESTORE_DEV ]; then
283
    FOUND_RESTORE_MNT=$( grep "^$FOUND_RESTORE_DEV " /etc/fstab | awk '{ print $2 }' )
284
    CONFIG_FOLDER=$FOUND_RESTORE_MNT/$SAVEFOLDER
285
    echo "Will restore data from $CONFIG_FOLDER"
286
    mount $FOUND_RESTORE_MNT
287
fi
288
 
289
### source the file "config", if found in $CONFIG_FOLDER
290
if [ -f $CONFIG_FOLDER/config ]; then
291
    . $CONFIG_FOLDER/config
292
fi
293
 
294
### do we have a shadow/passwd file in $FOUND_FOULDER 
295
if [ -r $CONFIG_FOLDER/passwd.tar.gz ] && [ -r $CONFIG_FOLDER/shadow.tar.gz ]; then
296
    # we do not need a password for local user and root
297
    NOLOCAL=nolocal
298
    NOROOT=noroot
299
fi
300
 
301
### set local user name and default hostname
302
if [ $PSI ]; then
303
    [ $LOCALUSER ] || LOCALUSER=l_psi
304
    DEFAULT_HOSTNAME=psi
305
else
306
    [ $LOCALUSER ] || LOCALUSER=sluser
307
    DEFAULT_HOSTNAME=slinux
308
fi
309
 
310
### check for xorg.conf in CONFIG_FOLDER
311
if [ -r $CONFIG_FOLDER/xorg.conf ]; then
71 beyerle@PS 312
    cp -af $CONFIG_FOLDER/xorg.conf $XORG_CONF
1 beyerle@PS 313
    if [ "$?" = "0" ]; then
314
	echo "Saved xorg.conf file found."
315
	XDRIVER=""
316
	HAVE_XORG_CONF="yes"
317
    fi
318
fi
319
 
320
### use vesa driver?
321
if [ $VESA ]; then
322
    echo "Force to use VESA driver!"
323
    video_driver="--set-driver=vesa"
324
else
325
    video_driver=""
326
fi
327
 
328
### force an other video driver?
329
if [ $XDRIVER ]; then
330
    echo "Force to use $XDRIVER driver!"
331
    video_driver="--set-driver=$XDRIVER"
332
fi
333
 
71 beyerle@PS 334
### configure Xserver
1 beyerle@PS 335
if [ -x /usr/bin/system-config-display ]; then
336
    echo "Configure Xserver:"
337
    if [ ! $HAVE_XORG_CONF ]; then
338
	if [ ! $SIMPLEX ]; then
71 beyerle@PS 339
 
1 beyerle@PS 340
            # default values
71 beyerle@PS 341
	    [ ! $HSYNC ]  && HSYNC="$HSYNC_DEFAULT"
342
	    [ ! $VSYNC ]  && VSYNC="$VSYNC_DEFAULT"
343
	    [ ! $SCREEN ] && SCREEN="$SCREEN_DEFAULT"
344
 
345
            # run system-config-display 
1 beyerle@PS 346
	    system-config-display \
347
		--reconfig \
348
                -v \
349
		--set-resolution=$SCREEN \
350
		--set-hsync=$HSYNC \
351
		--set-vsync=$VSYNC \
352
		$video_driver | grep Trying
71 beyerle@PS 353
 
72 beyerle@PS 354
            # system-config-display in SL5 does not work nicely :-(
355
            # e.g. No Monitor Section
71 beyerle@PS 356
 
357
	    # add Monitor Section and add Monitor0 to Screen Section
358
	    grep -q Monitor $XORG_CONF
72 beyerle@PS 359
	    if [ "$?" != "0" ]; then
71 beyerle@PS 360
		echo    "Section \"Monitor\""          >> $XORG_CONF
361
		echo -e "\tIdentifier   \"Monitor0\""  >> $XORG_CONF
362
		echo -e "\tHorizSync    $HSYNC"        >> $XORG_CONF
363
		echo -e "\tVertRefresh  $VSYNC"        >> $XORG_CONF
364
		echo -e "\tOption       \"dpms\""      >> $XORG_CONF
365
		echo -e "EndSection"                   >> $XORG_CONF
366
                sed -i "s|Device     \"Videocard0\"|Device     \"Videocard0\"\n\tMonitor    \"Monitor0\"|" $XORG_CONF
367
	    fi
368
 
72 beyerle@PS 369
            # add Modes for $SCREEN, if not yet there
71 beyerle@PS 370
	    grep -q Modes $XORG_CONF
72 beyerle@PS 371
	    if [ "$?" != "0" ]; then
71 beyerle@PS 372
		modeline=$( echo ${MODES_DEFAULT} | sed "s|.*\"$SCREEN|\"$SCREEN|" )
373
		if [ "$modeline" ]; then
374
		    sed -i "s|\tDepth.*|\tDepth     24\n\t\tModes $modeline|" $XORG_CONF
375
		fi
376
	    fi
377
 
72 beyerle@PS 378
 
71 beyerle@PS 379
	# simple Xserver configuration.
1 beyerle@PS 380
	else
381
	    echo "Use simple Xserver configuration."
382
	    system-config-display --noui --reconfig -v | grep Trying
383
	fi
384
    fi
385
fi
386
 
134 beyerle@PS 387
### enable nvidia driver
1 beyerle@PS 388
if [ $NVIDIA ] && [ ! $NONVIDIA ]; then
389
    # serach for Nvidia Video Card
390
    /sbin/lspci | grep VGA | grep -i -q nvidia
391
    if [ "$?" = "0" ]; then
134 beyerle@PS 392
	# nvidia-x11-drv installed?
393
	which nvidia-xconfig >/dev/null 2>&1
394
	if [ "$?" = "0" ]; then
136 beyerle@PS 395
	    echo "Enable nvidia driver."
134 beyerle@PS 396
	    # set driver to nv in case it's only vesa
397
	    sed -i 's|"vesa"|"nv"|' /etc/X11/xorg.conf
398
	    # configure for nvidia driver
136 beyerle@PS 399
	    nvidia-xconfig >/dev/null 2>&1
400
            nvidia-config-display enable
1 beyerle@PS 401
	fi
402
    fi
403
fi
404
 
405
### set special video driver options for Intel Mobile
406
 
407
#   (external VGA output: Clone)
408
if [ $I915GM ] || [ $I855GM ]; then
409
    sed -e "/Section[ \t]*\"Device\"/,/EndSection/{
410
     /^[ \t]*Option[ \t]*\"MonitorLayout\"/d
411
     /^[ \t]*Option[ \t]*\"Clone/d
412
     /EndSection/i\\
413
        Option      \"MonitorLayout\" \"CRT,LFP\"\\
414
        Option      \"Clone\" \"1\"\\
415
        Option      \"CloneRefresh\" \"60\"
71 beyerle@PS 416
     }" -i $XORG_CONF
1 beyerle@PS 417
fi
418
 
419
# Set BoardName for Intel 915GM
420
if [ $I915GM ]; then
71 beyerle@PS 421
    sed -i 's/BoardName.*VESA driver.*/BoardName   "Intel 915"/' $XORG_CONF
1 beyerle@PS 422
fi
423
 
424
 
425
### parameter KB = KEYBOARD
426
KEYBOARD=$KB
427
 
428
### ask user for keyboard layout if no keyboard given
429
if [ -x /usr/bin/system-config-keyboard ]; then
430
    if [ ! $KEYBOARD ]; then
431
	MORE_LAYOUTS="more..."
432
	keytables="U.S...........(us) \
433
	           Swiss-German..(sg-latin1) \
434
                   Swiss-French..(fr_CH-latin1) \
435
                   German........(de-latin1) \
436
                   Japanese......(jp106) \
437
                   $MORE_LAYOUTS"
438
	PS3="-> "
439
	echo
440
	echo "Please choose keyboard layout (type 1-6):"
441
	select KEYBOARD in $keytables;
442
	  do
443
	     case $KEYBOARD in
444
	        *)
445
	        # extract keyboard layout string from $KEYBOARD
446
	        KEYBOARD=${KEYBOARD##*(}
447
                KEYBOARD=${KEYBOARD%%)}
448
                break
449
                ;;
450
	     esac
451
	  done
452
    fi
453
fi
454
 
455
### set keyboard
456
if [ -x /usr/bin/system-config-keyboard ]; then
457
    if [ "$KEYBOARD" = "$MORE_LAYOUTS" ]; then
458
	system-config-keyboard --text
459
    else
460
	echo -n "Set keyboard to '$KEYBOARD', please wait ... "
461
	system-config-keyboard --noui $KEYBOARD >/dev/null 2>&1
462
	echo "done."
463
    fi
464
    echo
465
fi
466
 
125 beyerle@PS 467
### update AFS users and SEPP (only for PSI)
1 beyerle@PS 468
if [ $PSI ] && [ $AFS ]; then
125 beyerle@PS 469
    echo "Update AFS users..."
1 beyerle@PS 470
    [ -x /afs/psi.ch/sys/common/update_user.pl ] && /afs/psi.ch/sys/common/update_user.pl >/dev/null 2>&1 &
125 beyerle@PS 471
    if [ -d /usr/pack ]; then
472
	echo "Update SEPP links..."
473
	[ -x /afs/psi.ch/sys/common/update_sepp.pl ] && /afs/psi.ch/sys/common/update_sepp.pl >/dev/null 2>&1 &
474
    fi
1 beyerle@PS 475
    echo
476
fi
477
 
478
### create local user, if "nolocal" is not set 
479
if [ ! $NOLOCAL ]; then
480
 
481
    user=$LOCALUSER
482
    # execute useradd twice, to make it work (don't know why)
483
    if [ $PSI ] && [ ! $NOADMIN ]; then
484
	userdel -r $user 2>/dev/null
485
	useradd -G $LocalAdminGroup $user 2>/dev/null
486
	userdel -r $user 2>/dev/null
487
	useradd -G $LocalAdminGroup $user
488
    else
489
	userdel -r $user 2>/dev/null
490
	useradd $user 2>/dev/null
491
	userdel -r $user 2>/dev/null
492
	useradd $user
493
    fi
494
 
495
    # only for PSI: change users's group to GID=UID+50000
496
    if [ $PSI ]; then
497
	uid=$( id -u $user )
498
	old_gid=$( id -g $user )
499
	new_gid=$(( $old_gid + 50000 ))
500
        # fix /etc/group
501
	sed -i "s/${user}:x:${old_gid}:/${user}:x:${new_gid}:/" /etc/group
502
        # fix /etc/passwd
503
	sed -i "s/${user}:x:${uid}:${old_gid}:/${user}:x:${uid}:${new_gid}:/" /etc/passwd
504
        # fix perm of /home/${user)
505
	chgrp -R $user /home/${user}
506
    fi
507
fi
508
 
509
### copy special files for PSI user l_psi
510
if [ $PSI ] && [ ! $NOLOCAL ]; then
511
    find /usr/share/${LOCALUSER}/ -maxdepth 1 -mindepth 1 2>/dev/null | \
512
    while read dir; do 
513
	cp -a $dir /home/${LOCALUSER}/
514
    done
515
    # set owner
516
    chown -R ${LOCALUSER}.${LOCALUSER} /home/${LOCALUSER}
517
fi
518
 
74 beyerle@PS 519
### autostart kmix and krandrtray in KDE
520
if [ ! $NOLOCAL ]; then
521
    mkdir -p /home/${LOCALUSER}/.kde/Autostart
522
    cp -a /usr/share/applications/kde/krandrtray.desktop /home/${LOCALUSER}/.kde/Autostart 2>/dev/null
523
    cp -a /usr/share/applications/kde/kmix.desktop /home/${LOCALUSER}/.kde/Autostart 2>/dev/null
524
    chown -R ${LOCALUSER}.${LOCALUSER} /home/${LOCALUSER}/.kde/Autostart
525
fi
526
 
87 beyerle@PS 527
 
528
### first set empty password
529
if [ ! $NOROOT ]; then
530
    sed -i "s|^root:.*|root::12345:0:99999:1:::|" /etc/shadow
531
fi
532
if [ ! $NOLOCAL]; then
533
    sed -i "s|^$LOCALUSER:.*|$LOCALUSER::12345:0:99999:1:::|" /etc/shadow
534
fi
535
 
1 beyerle@PS 536
### set password for root and local user
537
if [ ! $NOPASSWD ]; then
538
    if [ ! $NOROOT ] || [ ! $NOLOCAL ]; then
539
	echo -n "Set password for "
540
	if [ ! $NOROOT ]; then
541
	    echo -n "'root' "
542
	fi
543
	if [ ! $NOROOT ] && [ ! $NOLOCAL ]; then
544
	    echo -n "and "
545
	fi
546
	if [ ! $NOLOCAL ]; then
547
	    echo -n "local user '$user' "
548
	fi
549
	echo
103 beyerle@PS 550
	echo "or hit return for empty password."
1 beyerle@PS 551
 
552
	if [ ! $NOLOCAL ]; then
553
	    echo "Login as local user '$user' with this password."
87 beyerle@PS 554
	fi
555
	echo
556
 
557
        # ask for password, if not yet given by $PASSWD
558
	if [ ! $PASSWD ]; then 
559
	    echo -n "Password: "
560
	    read -s PASSWD
1 beyerle@PS 561
	    echo
562
	fi
563
 
87 beyerle@PS 564
	# set password - or - set empty password
86 beyerle@PS 565
	if [ ! $NOROOT ] && [ "$PASSWD" ]; then
1 beyerle@PS 566
	    echo $PASSWD | passwd --stdin root >/dev/null
567
	fi
86 beyerle@PS 568
	if [ ! $NOLOCAL] && [ "$PASSWD" ]; then
1 beyerle@PS 569
	    echo $PASSWD | passwd --stdin $user >/dev/null
570
	fi
571
	echo
572
    fi
573
fi
574
 
575
### try to get hostname from DNS, if not yet defined
576
if [ ! $HOSTNAME ]; then
577
    echo "Try to get hostname from DNS ..."
578
    IP=$( /sbin/ip add show dev eth0 2>/dev/null | grep "inet " | cut -d" " -f6 | sed 's|/.*||' )
579
    if [ "$IP" = "" ]; then
580
	IP=$( /sbin/ip add show dev eth1 2>/dev/null | grep "inet " | cut -d" " -f6 | sed 's|/.*||' )
581
    fi
582
    if [ "$IP" != "" ]; then
583
	host -W 1 $IP >/dev/null 2>&1
584
	if [ "$?" = "0" ]; then
585
	    HOSTNAME=$( host -W 1 $IP | cut -d" " -f 5 | cut -d"." -f 1 )
586
	    if [ "$HOSTNAME" = "3(NXDOMAIN)" ]; then
587
		HOSTNAME=$DEFAULT_HOSTNAME
588
	    fi	
589
	    if [ "$HOSTNAME" = "no" ]; then
590
		HOSTNAME=$DEFAULT_HOSTNAME
591
	    fi	
592
	fi
593
    fi
594
fi
595
 
128 beyerle@PS 596
### define default hostname, if $HOSTNAME is still not yet set
1 beyerle@PS 597
if [ ! $HOSTNAME ]; then
598
    HOSTNAME=$DEFAULT_HOSTNAME
599
fi
600
 
601
### set hostname
602
export HOSTNAME=$HOSTNAME
603
hostname $HOSTNAME
604
sed -i "s/HOSTNAME=.*/HOSTNAME=${HOSTNAME}/" /etc/sysconfig/network
605
if [ $PSI ]; then
606
    sed -i "s/hostname=.*/hostname=${HOSTNAME}.psi.ch/" /etc/ssmtp/ssmtp.conf
125 beyerle@PS 607
    sed -i "s/HOSTNAME=.*/HOSTNAME=${HOSTNAME}/" /etc/sysconfig/psi
1 beyerle@PS 608
fi
609
for iface in eth0 eth1 eth2 eth3; do
610
    if [ -e /etc/sysconfig/network-scripts/ifcfg-${iface} ]; then
611
	echo "DHCP_HOSTNAME=${HOSTNAME}" >> /etc/sysconfig/network-scripts/ifcfg-${iface}
612
    fi
613
done
614
 
615
echo "Hostname set to: $HOSTNAME"
616
echo
617
 
618
### set cups server
619
if [ $CUPS ]; then
620
    sed -i "s|.*ServerName .*|ServerName  $CUPS|" /etc/cups/client.conf
138 beyerle@PS 621
    grep -q ServerName /etc/cups/client.conf || echo "ServerName  $CUPS" >> /etc/cups/client.conf 
1 beyerle@PS 622
fi
623
 
624
### some magic: just access this file in order that it can be sourced later
625
ls -lag /etc/X11/xinit/xinitrc-common >/dev/null 2>&1
626
 
627
### set keyboard for rdesktop
71 beyerle@PS 628
if [ -e $XORG_CONF ]; then
629
    grep -q de_CH $XORG_CONF && RDESKTOP_OPT="-k de-ch"
630
    grep -q fr_CH $XORG_CONF && RDESKTOP_OPT="-k fr-ch"
631
    grep -q jp106 $XORG_CONF && RDESKTOP_OPT="-k ja"
1 beyerle@PS 632
fi
633
 
634
if [ "$RDESKTOP_OPT" ]; then
635
    echo "alias rdesktop='rdesktop $RDESKTOP_OPT'" > /etc/profile.d/rdesktop.sh
636
    echo "export RDESKTOP_OPT='$RDESKTOP_OPT'" >> /etc/profile.d/rdesktop.sh
637
    chmod 755 /etc/profile.d/rdesktop.sh
638
fi
639
 
640
### run setup script, if found in $CONFIG_FOLDER on $FOUND_RESTORE_MNT
641
if [ -r $CONFIG_FOLDER/setup ]; then
642
    CONFIG_FOLDER=$CONFIG_FOLDER bash $CONFIG_FOLDER/setup
643
fi
644
 
645
### umount $FOUND_RESTORE_MNT
646
if [ $FOUND_RESTORE_MNT ]; then
647
    echo "Unmount $FOUND_RESTORE_MNT"
648
    umount $FOUND_RESTORE_MNT 2>/dev/null
649
    sleep 3
650
fi
651
 
652
### local home partition?
653
if [ $HOMELOCAL ]; then
654
    mv /home /home.old
655
    mkdir -p /mnt/home_par
656
    # which partition? which folder?
657
    HOMEPAR=$( echo $HOMELOCAL | cut -d":" -f1 )
658
    HOMEDIR=$( echo $HOMELOCAL | grep ":" | cut -d":" -f2 )
659
    umount $HOMEPAR 2>/dev/null
660
    # mount it with option noatime, healthy for USB flash drives
661
    mount -o noatime -rw $HOMEPAR /mnt/home_par 2>/dev/null
662
    if [ "$?" != "0" ]; then
663
	echo "ERROR: Could not mount read/write $HOMEPAR"
664
	umount $HOMEPAR >/dev/null 2&>1
665
	mv /home.old /home
666
    else
667
	echo "$HOMEPAR mounted on /mnt/home_par"
668
	# link to new home
669
	ln -s /mnt/home_par/$HOMEDIR /home
670
	if [ ! -d /mnt/home_par/$HOMEDIR ]; then
671
	    echo "$HOMELOCAL not found on $HOMEPAR"
672
	    echo mkdir -p /mnt/home_par/$HOMEDIR
673
	    if [ "$?" != "0" ]; then
674
		echo "ERROR: Could not create $HOMELOCAL on $HOMEPAR"
675
		umount $HOMEPAR >/dev/null 2&>1
676
		rm -f /home
677
		mv /home.old /home
678
	    else
679
		echo "Folder $HOMEDIR created on $HOMEPAR"
680
	    fi
681
	fi
682
	if [ -d /mnt/home_par/$HOMEDIR ]; then
683
	    echo "/home is linked to /mnt/home_par${HOMEDIR}"
684
	    # copy files from /home.old to /home, which are not yet there
685
	    /bin/cp -a -i --reply=no /home.old/* /home/ 
686
	    rm -rf /home.old
687
	fi
688
    fi
689
    sleep 2
690
fi
691
 
692
### mount all if AUTOMOUNT set
693
if [ $AUTOMOUNT ]; then
694
    mount -a
695
fi
696
 
697
### unmute all mixers and set volumes
698
if [ -x /usr/bin/set-volume ]; then 
699
    if [ $NOSOUND ]; then
700
	/usr/bin/set-volume 0 > /var/log/set-volume.log 2>&1 &
701
    else
702
	/usr/bin/set-volume 60 > /var/log/set-volume.log 2>&1 &
703
    fi
704
fi
705
 
706
### set kde or gnome as desktop
707
if [ $KDE ]; then
708
    sed -i "/^DESKTOP=.*/d" /etc/sysconfig/desktop 2&>/dev/null
709
    echo "DESKTOP=KDE" >> /etc/sysconfig/desktop
710
fi
711
if [ $GNOME ]; then
712
    sed -i "/^DESKTOP=.*/d" /etc/sysconfig/desktop 2&>/dev/null
713
    echo "DESKTOP=GNOME" >> /etc/sysconfig/desktop
714
fi
715
 
78 beyerle@PS 716
### reload sound module (second time)
717
reload_soundmodule
83 beyerle@PS 718
 
719
### bring up all network interfaces (useful to enable WLAN devices)
720
if [ ! $NONET ]; then
721
    devices=$( ls /etc/sysconfig/network-scripts/ifcfg-* \
722
               | sed "s|/etc/sysconfig/network-scripts/ifcfg-||" | grep -v lo )
723
    for device in $devices; do
724
	ifconfig $device up > /dev/null 2>&1 &
725
    done
726
fi
727