Subversion Repositories livecd

Rev

Rev 140 | 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
142 beyerle@PS 401
	else
402
	    echo "Nvidia driver not found."
1 beyerle@PS 403
	fi
404
    fi
405
fi
406
 
407
### set special video driver options for Intel Mobile
408
 
409
#   (external VGA output: Clone)
410
if [ $I915GM ] || [ $I855GM ]; then
411
    sed -e "/Section[ \t]*\"Device\"/,/EndSection/{
412
     /^[ \t]*Option[ \t]*\"MonitorLayout\"/d
413
     /^[ \t]*Option[ \t]*\"Clone/d
414
     /EndSection/i\\
415
        Option      \"MonitorLayout\" \"CRT,LFP\"\\
416
        Option      \"Clone\" \"1\"\\
417
        Option      \"CloneRefresh\" \"60\"
71 beyerle@PS 418
     }" -i $XORG_CONF
1 beyerle@PS 419
fi
420
 
421
# Set BoardName for Intel 915GM
422
if [ $I915GM ]; then
71 beyerle@PS 423
    sed -i 's/BoardName.*VESA driver.*/BoardName   "Intel 915"/' $XORG_CONF
1 beyerle@PS 424
fi
425
 
426
 
427
### parameter KB = KEYBOARD
428
KEYBOARD=$KB
429
 
430
### ask user for keyboard layout if no keyboard given
431
if [ -x /usr/bin/system-config-keyboard ]; then
432
    if [ ! $KEYBOARD ]; then
433
	MORE_LAYOUTS="more..."
434
	keytables="U.S...........(us) \
435
	           Swiss-German..(sg-latin1) \
436
                   Swiss-French..(fr_CH-latin1) \
437
                   German........(de-latin1) \
438
                   Japanese......(jp106) \
439
                   $MORE_LAYOUTS"
440
	PS3="-> "
441
	echo
442
	echo "Please choose keyboard layout (type 1-6):"
443
	select KEYBOARD in $keytables;
444
	  do
445
	     case $KEYBOARD in
446
	        *)
447
	        # extract keyboard layout string from $KEYBOARD
448
	        KEYBOARD=${KEYBOARD##*(}
449
                KEYBOARD=${KEYBOARD%%)}
450
                break
451
                ;;
452
	     esac
453
	  done
454
    fi
455
fi
456
 
457
### set keyboard
458
if [ -x /usr/bin/system-config-keyboard ]; then
459
    if [ "$KEYBOARD" = "$MORE_LAYOUTS" ]; then
460
	system-config-keyboard --text
461
    else
462
	echo -n "Set keyboard to '$KEYBOARD', please wait ... "
463
	system-config-keyboard --noui $KEYBOARD >/dev/null 2>&1
464
	echo "done."
465
    fi
466
    echo
467
fi
468
 
125 beyerle@PS 469
### update AFS users and SEPP (only for PSI)
1 beyerle@PS 470
if [ $PSI ] && [ $AFS ]; then
125 beyerle@PS 471
    echo "Update AFS users..."
1 beyerle@PS 472
    [ -x /afs/psi.ch/sys/common/update_user.pl ] && /afs/psi.ch/sys/common/update_user.pl >/dev/null 2>&1 &
125 beyerle@PS 473
    if [ -d /usr/pack ]; then
474
	echo "Update SEPP links..."
475
	[ -x /afs/psi.ch/sys/common/update_sepp.pl ] && /afs/psi.ch/sys/common/update_sepp.pl >/dev/null 2>&1 &
476
    fi
1 beyerle@PS 477
    echo
478
fi
479
 
480
### create local user, if "nolocal" is not set 
481
if [ ! $NOLOCAL ]; then
482
 
483
    user=$LOCALUSER
484
    # execute useradd twice, to make it work (don't know why)
485
    if [ $PSI ] && [ ! $NOADMIN ]; then
486
	userdel -r $user 2>/dev/null
487
	useradd -G $LocalAdminGroup $user 2>/dev/null
488
	userdel -r $user 2>/dev/null
489
	useradd -G $LocalAdminGroup $user
490
    else
491
	userdel -r $user 2>/dev/null
492
	useradd $user 2>/dev/null
493
	userdel -r $user 2>/dev/null
494
	useradd $user
495
    fi
496
 
497
    # only for PSI: change users's group to GID=UID+50000
498
    if [ $PSI ]; then
499
	uid=$( id -u $user )
500
	old_gid=$( id -g $user )
501
	new_gid=$(( $old_gid + 50000 ))
502
        # fix /etc/group
503
	sed -i "s/${user}:x:${old_gid}:/${user}:x:${new_gid}:/" /etc/group
504
        # fix /etc/passwd
505
	sed -i "s/${user}:x:${uid}:${old_gid}:/${user}:x:${uid}:${new_gid}:/" /etc/passwd
506
        # fix perm of /home/${user)
507
	chgrp -R $user /home/${user}
508
    fi
509
fi
510
 
511
### copy special files for PSI user l_psi
512
if [ $PSI ] && [ ! $NOLOCAL ]; then
513
    find /usr/share/${LOCALUSER}/ -maxdepth 1 -mindepth 1 2>/dev/null | \
514
    while read dir; do 
515
	cp -a $dir /home/${LOCALUSER}/
516
    done
517
    # set owner
518
    chown -R ${LOCALUSER}.${LOCALUSER} /home/${LOCALUSER}
519
fi
520
 
74 beyerle@PS 521
### autostart kmix and krandrtray in KDE
522
if [ ! $NOLOCAL ]; then
523
    mkdir -p /home/${LOCALUSER}/.kde/Autostart
524
    cp -a /usr/share/applications/kde/krandrtray.desktop /home/${LOCALUSER}/.kde/Autostart 2>/dev/null
525
    cp -a /usr/share/applications/kde/kmix.desktop /home/${LOCALUSER}/.kde/Autostart 2>/dev/null
526
    chown -R ${LOCALUSER}.${LOCALUSER} /home/${LOCALUSER}/.kde/Autostart
527
fi
528
 
87 beyerle@PS 529
 
530
### first set empty password
531
if [ ! $NOROOT ]; then
532
    sed -i "s|^root:.*|root::12345:0:99999:1:::|" /etc/shadow
533
fi
534
if [ ! $NOLOCAL]; then
535
    sed -i "s|^$LOCALUSER:.*|$LOCALUSER::12345:0:99999:1:::|" /etc/shadow
536
fi
537
 
1 beyerle@PS 538
### set password for root and local user
539
if [ ! $NOPASSWD ]; then
540
    if [ ! $NOROOT ] || [ ! $NOLOCAL ]; then
541
	echo -n "Set password for "
542
	if [ ! $NOROOT ]; then
543
	    echo -n "'root' "
544
	fi
545
	if [ ! $NOROOT ] && [ ! $NOLOCAL ]; then
546
	    echo -n "and "
547
	fi
548
	if [ ! $NOLOCAL ]; then
549
	    echo -n "local user '$user' "
550
	fi
551
	echo
103 beyerle@PS 552
	echo "or hit return for empty password."
1 beyerle@PS 553
 
554
	if [ ! $NOLOCAL ]; then
555
	    echo "Login as local user '$user' with this password."
87 beyerle@PS 556
	fi
557
	echo
558
 
559
        # ask for password, if not yet given by $PASSWD
560
	if [ ! $PASSWD ]; then 
561
	    echo -n "Password: "
562
	    read -s PASSWD
1 beyerle@PS 563
	    echo
564
	fi
565
 
87 beyerle@PS 566
	# set password - or - set empty password
86 beyerle@PS 567
	if [ ! $NOROOT ] && [ "$PASSWD" ]; then
1 beyerle@PS 568
	    echo $PASSWD | passwd --stdin root >/dev/null
569
	fi
86 beyerle@PS 570
	if [ ! $NOLOCAL] && [ "$PASSWD" ]; then
1 beyerle@PS 571
	    echo $PASSWD | passwd --stdin $user >/dev/null
572
	fi
573
	echo
574
    fi
575
fi
576
 
577
### try to get hostname from DNS, if not yet defined
578
if [ ! $HOSTNAME ]; then
579
    echo "Try to get hostname from DNS ..."
580
    IP=$( /sbin/ip add show dev eth0 2>/dev/null | grep "inet " | cut -d" " -f6 | sed 's|/.*||' )
581
    if [ "$IP" = "" ]; then
582
	IP=$( /sbin/ip add show dev eth1 2>/dev/null | grep "inet " | cut -d" " -f6 | sed 's|/.*||' )
583
    fi
584
    if [ "$IP" != "" ]; then
585
	host -W 1 $IP >/dev/null 2>&1
586
	if [ "$?" = "0" ]; then
587
	    HOSTNAME=$( host -W 1 $IP | cut -d" " -f 5 | cut -d"." -f 1 )
588
	    if [ "$HOSTNAME" = "3(NXDOMAIN)" ]; then
589
		HOSTNAME=$DEFAULT_HOSTNAME
590
	    fi	
591
	    if [ "$HOSTNAME" = "no" ]; then
592
		HOSTNAME=$DEFAULT_HOSTNAME
593
	    fi	
594
	fi
595
    fi
596
fi
597
 
128 beyerle@PS 598
### define default hostname, if $HOSTNAME is still not yet set
1 beyerle@PS 599
if [ ! $HOSTNAME ]; then
600
    HOSTNAME=$DEFAULT_HOSTNAME
601
fi
602
 
603
### set hostname
604
export HOSTNAME=$HOSTNAME
605
hostname $HOSTNAME
606
sed -i "s/HOSTNAME=.*/HOSTNAME=${HOSTNAME}/" /etc/sysconfig/network
607
if [ $PSI ]; then
608
    sed -i "s/hostname=.*/hostname=${HOSTNAME}.psi.ch/" /etc/ssmtp/ssmtp.conf
125 beyerle@PS 609
    sed -i "s/HOSTNAME=.*/HOSTNAME=${HOSTNAME}/" /etc/sysconfig/psi
1 beyerle@PS 610
fi
611
for iface in eth0 eth1 eth2 eth3; do
612
    if [ -e /etc/sysconfig/network-scripts/ifcfg-${iface} ]; then
613
	echo "DHCP_HOSTNAME=${HOSTNAME}" >> /etc/sysconfig/network-scripts/ifcfg-${iface}
614
    fi
615
done
616
 
617
echo "Hostname set to: $HOSTNAME"
618
echo
619
 
620
### set cups server
621
if [ $CUPS ]; then
622
    sed -i "s|.*ServerName .*|ServerName  $CUPS|" /etc/cups/client.conf
138 beyerle@PS 623
    grep -q ServerName /etc/cups/client.conf || echo "ServerName  $CUPS" >> /etc/cups/client.conf 
1 beyerle@PS 624
fi
625
 
626
### some magic: just access this file in order that it can be sourced later
627
ls -lag /etc/X11/xinit/xinitrc-common >/dev/null 2>&1
628
 
629
### set keyboard for rdesktop
71 beyerle@PS 630
if [ -e $XORG_CONF ]; then
631
    grep -q de_CH $XORG_CONF && RDESKTOP_OPT="-k de-ch"
632
    grep -q fr_CH $XORG_CONF && RDESKTOP_OPT="-k fr-ch"
633
    grep -q jp106 $XORG_CONF && RDESKTOP_OPT="-k ja"
1 beyerle@PS 634
fi
635
 
636
if [ "$RDESKTOP_OPT" ]; then
637
    echo "alias rdesktop='rdesktop $RDESKTOP_OPT'" > /etc/profile.d/rdesktop.sh
638
    echo "export RDESKTOP_OPT='$RDESKTOP_OPT'" >> /etc/profile.d/rdesktop.sh
639
    chmod 755 /etc/profile.d/rdesktop.sh
640
fi
641
 
642
### run setup script, if found in $CONFIG_FOLDER on $FOUND_RESTORE_MNT
643
if [ -r $CONFIG_FOLDER/setup ]; then
644
    CONFIG_FOLDER=$CONFIG_FOLDER bash $CONFIG_FOLDER/setup
645
fi
646
 
647
### umount $FOUND_RESTORE_MNT
648
if [ $FOUND_RESTORE_MNT ]; then
649
    echo "Unmount $FOUND_RESTORE_MNT"
650
    umount $FOUND_RESTORE_MNT 2>/dev/null
651
    sleep 3
652
fi
653
 
654
### local home partition?
655
if [ $HOMELOCAL ]; then
656
    mv /home /home.old
657
    mkdir -p /mnt/home_par
658
    # which partition? which folder?
659
    HOMEPAR=$( echo $HOMELOCAL | cut -d":" -f1 )
660
    HOMEDIR=$( echo $HOMELOCAL | grep ":" | cut -d":" -f2 )
661
    umount $HOMEPAR 2>/dev/null
662
    # mount it with option noatime, healthy for USB flash drives
663
    mount -o noatime -rw $HOMEPAR /mnt/home_par 2>/dev/null
664
    if [ "$?" != "0" ]; then
665
	echo "ERROR: Could not mount read/write $HOMEPAR"
666
	umount $HOMEPAR >/dev/null 2&>1
667
	mv /home.old /home
668
    else
669
	echo "$HOMEPAR mounted on /mnt/home_par"
670
	# link to new home
671
	ln -s /mnt/home_par/$HOMEDIR /home
672
	if [ ! -d /mnt/home_par/$HOMEDIR ]; then
673
	    echo "$HOMELOCAL not found on $HOMEPAR"
674
	    echo mkdir -p /mnt/home_par/$HOMEDIR
675
	    if [ "$?" != "0" ]; then
676
		echo "ERROR: Could not create $HOMELOCAL on $HOMEPAR"
677
		umount $HOMEPAR >/dev/null 2&>1
678
		rm -f /home
679
		mv /home.old /home
680
	    else
681
		echo "Folder $HOMEDIR created on $HOMEPAR"
682
	    fi
683
	fi
684
	if [ -d /mnt/home_par/$HOMEDIR ]; then
685
	    echo "/home is linked to /mnt/home_par${HOMEDIR}"
686
	    # copy files from /home.old to /home, which are not yet there
687
	    /bin/cp -a -i --reply=no /home.old/* /home/ 
688
	    rm -rf /home.old
689
	fi
690
    fi
691
    sleep 2
692
fi
693
 
694
### mount all if AUTOMOUNT set
695
if [ $AUTOMOUNT ]; then
696
    mount -a
697
fi
698
 
699
### unmute all mixers and set volumes
700
if [ -x /usr/bin/set-volume ]; then 
701
    if [ $NOSOUND ]; then
702
	/usr/bin/set-volume 0 > /var/log/set-volume.log 2>&1 &
703
    else
704
	/usr/bin/set-volume 60 > /var/log/set-volume.log 2>&1 &
705
    fi
706
fi
707
 
708
### set kde or gnome as desktop
709
if [ $KDE ]; then
710
    sed -i "/^DESKTOP=.*/d" /etc/sysconfig/desktop 2&>/dev/null
711
    echo "DESKTOP=KDE" >> /etc/sysconfig/desktop
712
fi
713
if [ $GNOME ]; then
714
    sed -i "/^DESKTOP=.*/d" /etc/sysconfig/desktop 2&>/dev/null
715
    echo "DESKTOP=GNOME" >> /etc/sysconfig/desktop
716
fi
717
 
78 beyerle@PS 718
### reload sound module (second time)
719
reload_soundmodule
83 beyerle@PS 720
 
721
### bring up all network interfaces (useful to enable WLAN devices)
722
if [ ! $NONET ]; then
723
    devices=$( ls /etc/sysconfig/network-scripts/ifcfg-* \
724
               | sed "s|/etc/sysconfig/network-scripts/ifcfg-||" | grep -v lo )
725
    for device in $devices; do
726
	ifconfig $device up > /dev/null 2>&1 &
727
    done
728
fi
729