Subversion Repositories livecd

Rev

Rev 231 | 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
###############################################################
4
#
5
# LiveCD customization script
6
# 
14 beyerle@PS 7
# Run this script on a SL Installation
1 beyerle@PS 8
# to prepare the system for a LiveCD 
9
#
169 beyerle@PS 10
# Urs Beyerle
1 beyerle@PS 11
#
12
###############################################################
13
 
23 beyerle@PS 14
### source livecd.conf
1 beyerle@PS 15
. livecd.conf
16
 
17
###############################################################
18
 
19
function usage() {
20
 
21
   ## Usage
22
   # ----------------------------------------------------------
23
 
24
   cat <<EOF
25
 
26
   Optional Options:
27
 
28
    -h:       print this screen
29
    -psi:     customize for PSI Live CD
30
    -dvd:     customize for Live DVD
31
    -mini:    customize for Mini Live CD
32
 
33
EOF
34
 
35
}
36
 
37
###############################################################
38
 
39
###############################################################
40
# Definitions
41
###############################################################
42
 
43
### read options from command-line
44
PSI=""
45
while [ $# -gt 0 ]; do
46
 
47
    case "$1" in
48
       -h)
49
            usage; exit;;
50
       -psi)
51
            PSI=-psi; shift; continue;;
52
       -dvd)
53
            DVD=-dvd; shift; continue;;
54
       -mini)
55
            MINI=-mini; shift; continue;;
56
       *)
57
            usage; exit;;
58
    esac
59
 
60
done
61
 
62
### arch x86_64 or i686 ?
63
ARCH=$( /bin/arch )
64
[ "$ARCH" != "x86_64" ] && ARCH=i686
65
 
23 beyerle@PS 66
### set local username for PSI
67
[ $PSI ] && LOCALUSER=l_psi
1 beyerle@PS 68
 
69
 
23 beyerle@PS 70
 
1 beyerle@PS 71
###############################################################
72
# Backup some original files
73
###############################################################
74
 
75
echo "Backup original files ..."
76
 
77
ori_files="/etc/init.d/netfs \
78
           /etc/init.d/autofs \
79
           /etc/init.d/halt \
80
           /etc/init.d/network
81
           /etc/init.d/functions \
82
           /etc/rc.d/rc.sysinit \
83
           /etc/sysconfig/afs \
84
           /etc/motd \
85
           /etc/redhat-release \
16 beyerle@PS 86
	   /etc/rc.d/rc.local \
1 beyerle@PS 87
           /etc/resolv.conf"
88
 
89
for file in $ori_files; do
90
    [ ! -e ${file}.ori ] && cp -a ${file} ${file}.ori 2>/dev/null
91
done
92
 
93
 
94
 
95
###############################################################
96
# Configure system
97
###############################################################
98
 
99
echo "Configure system ..."
100
 
112 beyerle@PS 101
# build nvidia kernel modules 
23 beyerle@PS 102
[ -x /usr/sbin/mknvidia ] && mknvidia
134 beyerle@PS 103
dkms status -m nvidia 2>/dev/null | grep -q nvidia
104
if [ "$?" = "0" ]; then
135 beyerle@PS 105
    # already built?
106
    dkms status -m nvidia -k $KERNEL | grep installed
107
    if [ "$?" != "0" ]; then
151 beyerle@PS 108
	module_version=$( dkms status -m nvidia | cut -d"," -f2 | cut -d":" -f1 )
135 beyerle@PS 109
	dkms build -m nvidia -v $module_version -k $KERNEL
110
	dkms install -m nvidia -v $module_version -k $KERNEL
111
    fi
134 beyerle@PS 112
fi
1 beyerle@PS 113
 
114
# build vpnclient kernel module
134 beyerle@PS 115
running_kernel=$( uname -r )
116
if [ -x /usr/sbin/mkvpnclient ]; then
117
    if [ "$running_kernel" = "$KERNEL" ]; then
118
	mkvpnclient
119
    else
152 beyerle@PS 120
	if [ -e /lib/modules/$KERNEL/CiscoVPN/cisco_ipsec.ko ]; then
121
	    echo "VPN client kernel module found."
122
	    sleep 2
123
	else
124
	    echo "VPN client kernel module could not be build ..."
125
	    sleep 5
126
	fi
134 beyerle@PS 127
    fi
128
fi
1 beyerle@PS 129
 
130
# Update Virus definitions 
131
# run freshclam
132
if [ -x /usr/bin/freshclam ]; then
133
    echo; echo "Run /usr/bin/freshclam:"
134
    /etc/init.d/clamd status || /etc/init.d/clamd start && /usr/bin/freshclam
135
    /etc/init.d/clamd stop
136
    echo
137
fi
138
# update f-prot and uvscan
139
[ -x /usr/local/f-prot/tools/check-updates.pl ] && /usr/local/f-prot/tools/check-updates.pl
140
[ -x /usr/local/uvscan/update-dat ] && /usr/local/uvscan/update-dat
141
 
142
# run depmod -a for the LiveCD kernels
125 beyerle@PS 143
echo "Run depmod -a $KERNEL ..."
144
depmod -a $KERNEL
1 beyerle@PS 145
if [ $SMP ]; then
146
    echo "Run depmod -a ${KERNEL}smp ..."
147
    depmod -a ${KERNEL}smp
148
fi
149
 
150
# delete users (just to be sure)
151
userdel -r $LOCALUSER 2>/dev/null
152
userdel -r l_psi 2>/dev/null
153
userdel -r sluser 2>/dev/null
154
userdel -r user 2>/dev/null
155
 
125 beyerle@PS 156
# copy back /etc/yum.repos.d.ori to /etc/yum.repos.d
157
if [ -d /etc/yum.repos.d.ori ]; then
158
    cp -a /etc/yum.repos.d.ori /etc/yum.repos.d
1 beyerle@PS 159
fi
160
 
161
echo "done."
162
echo "--------------------------------------------"
163
 
164
 
165
 
166
###############################################################
167
# Clean up and delete files
168
###############################################################
169
 
170
echo "Cleaning up ..."
171
 
172
### set LANG
173
export LANG=C
174
 
175
### stop AFS
176
/etc/init.d/afs stop 2>/dev/null
177
 
178
### clean up yum
179
yum clean all >/dev/null
180
rm -rf /var/cache/yum/*
181
 
182
### remove cfengine log files
183
rm -f /var/cfengine/*log
184
 
185
### delete log files
186
find /var/log/ -type f -exec rm -f {} \;
187
 
125 beyerle@PS 188
### clean rpm database cache
1 beyerle@PS 189
rm -rf /var/lib/rpm/__db.*
190
 
191
### clean /var/spool/mail
192
rm -rf /var/spool/mail/*
193
touch /var/spool/mail/root
194
chmod 600 /var/spool/mail/root
195
 
196
### delete .rpmori .rpm Files in /etc
197
find /etc -name "*\.rpmorig" -exec rm -f {} \;
198
find /etc -name "*\.rpmnew"  -exec rm -f {} \;
29 beyerle@PS 199
find /etc -name "*\.rpmsave" -exec rm -f {} \;
1 beyerle@PS 200
 
201
### delete *~ files in /etc
202
find /etc | grep "~$" | while read f; do rm -f "$f"; done
203
 
204
### clean up /root
56 beyerle@PS 205
rm -f  /root/.bash_history
154 beyerle@PS 206
rm -f  /root/.lesshst
207
rm -f  /root/.rnd
162 beyerle@PS 208
rm -rf /root/.emacs.d
56 beyerle@PS 209
rm -f  /root/.ssh/known_hosts
210
rm -rf /root/.subversion
1 beyerle@PS 211
 
212
### clean AFS cache
213
if [ -d /usr/vice/cache ]; then
214
    rm -rf /usr/vice/cache
215
    mkdir /usr/vice/cache
216
fi
217
if [ -d /var/cache/openafs ]; then
218
    rm -rf /var/cache/openafs
219
    mkdir /var/cache/openafs
220
fi
221
 
222
### clean up /var/tmp
223
rm -rf /var/tmp/*
224
 
225
### remove root passwd
226
sed -i "s|^root:.*|root:\*:12943:0:99999:7:::|" /etc/shadow
227
sed -i "s|^root:.*:0:0|root:x:0:0|" /etc/passwd
228
 
229
### remove /.autofsck
23 beyerle@PS 230
rm -f /.autofsck
1 beyerle@PS 231
 
125 beyerle@PS 232
### disable cfagent 
233
[ $PSI ] && mv /etc/cron.d/cfengine      /etc/cron_backup/ 2>/dev/null
1 beyerle@PS 234
 
125 beyerle@PS 235
### disable psi-cronjobs
236
[ $PSI ] && mv /etc/cron.d/psi-cronjobs  /etc/cron_backup/ 2>/dev/null
237
 
238
### disable check_update
23 beyerle@PS 239
[ $PSI ] && sed -i "s|/etc/init.d/check_update|# /etc/init.d/check_update|" /etc/rc.d/rc.local.psi
125 beyerle@PS 240
[ $PSI ] && chkconfig check_update off
1 beyerle@PS 241
 
242
### create in /boot link to LiveCD kernel(s)
243
ln -fs /boot/vmlinuz-$KERNEL /boot/vmlinuz
244
[ $SMP ] && ln -fs /boot/vmlinuz-${KERNEL}smp /boot/vmlinuz${SMP}
245
 
110 beyerle@PS 246
### remove ssh keys
1 beyerle@PS 247
FILES_REMOVE="/etc/ssh/ssh_host_key \
248
              /etc/ssh/ssh_host_key.pub \
249
              /etc/ssh/ssh_host_rsa_key.pub \
250
              /etc/ssh/ssh_host_dsa_key \
251
              /etc/ssh/ssh_host_dsa_key.pub"
252
for file in $FILES_REMOVE; do
23 beyerle@PS 253
    rm -f $file
1 beyerle@PS 254
done
255
 
256
### remove useless cronjobs
257
mkdir -p /etc/cron_backup
125 beyerle@PS 258
mv /etc/cron.d/sysstat                 /etc/cron_backup/ 2>/dev/null
1 beyerle@PS 259
mv /etc/cron.weekly/00-makewhatis.cron /etc/cron_backup/00-makewhatis.cron.weekly 2>/dev/null
125 beyerle@PS 260
mv /etc/cron.daily/00-makewhatis.cron  /etc/cron_backup/ 2>/dev/null
261
mv /etc/cron.daily/makewhatis.cron     /etc/cron_backup/ 2>/dev/null
262
mv /etc/cron.daily/rpm                 /etc/cron_backup/ 2>/dev/null
263
mv /etc/cron.daily/slocate.cron        /etc/cron_backup/ 2>/dev/null
264
mv /etc/cron.daily/tetex.cron          /etc/cron_backup/ 2>/dev/null
265
mv /etc/cron.daily/yum.cron            /etc/cron_backup/ 2>/dev/null
266
mv /etc/cron.daily/prelink             /etc/cron_backup/ 2>/dev/null
1 beyerle@PS 267
 
268
### remove backup of /etc/X11/xorg.conf
125 beyerle@PS 269
rm -f /etc/X11/xorg.conf.ori    2>/dev/null
1 beyerle@PS 270
rm -f /etc/X11/xorg.conf.backup 2>/dev/null
271
 
272
### remove unused dirs in /lib/modules
273
ls /lib/modules/ | grep -v $KERNEL | while read mod_dir; do
274
    rpm -qf --quiet /lib/modules/$mod_dir
275
    if [ $? != "0" ]; then
276
	if [ $mod_dir != "" ]; then
277
	    cleaned_dir=/tmp/cleaned-$( date +%Y%m%d%H%M )
278
	    mkdir -p $cleaned_dir
279
            echo "Move dir /lib/modules/$mod_dir to $cleaned_dir"
280
	    mv -f /lib/modules/$mod_dir $cleaned_dir/
281
        fi
282
    fi
283
done
230 beyerleu 284
 
1 beyerle@PS 285
### move some unneeded files to /mini (not for LiveDVD and miniCD)
110 beyerle@PS 286
#   to save disk space
287
 
1 beyerle@PS 288
if [ ! $DVD ] && [ ! $MINI ]; then
289
 
230 beyerleu 290
    echo "Move some folders to /mini, to save disk space:"
1 beyerle@PS 291
    mkdir -p /mini
292
 
293
    # move some dirs in /usr/share/doc to /mini
294
    mkdir -p /mini/usr/share/doc
115 beyerle@PS 295
    mv -v /usr/share/doc/openafs-*        /mini/usr/share/doc 2>/dev/null
296
    mv -v /usr/share/doc/gcc-*            /mini/usr/share/doc 2>/dev/null
297
    mv -v /usr/share/doc/pine-*           /mini/usr/share/doc 2>/dev/null
298
    mv -v /usr/share/doc/ntp-*            /mini/usr/share/doc 2>/dev/null
299
    mv -v /usr/share/doc/cups-*           /mini/usr/share/doc 2>/dev/null
300
    mv -v /usr/share/doc/testdisk-*       /mini/usr/share/doc 2>/dev/null
301
    mv -v /usr/share/doc/htdig-*          /mini/usr/share/doc 2>/dev/null
302
    mv -v /usr/share/doc/gnome-vfs2-*     /mini/usr/share/doc 2>/dev/null
303
    mv -v /usr/share/doc/bash-*           /mini/usr/share/doc 2>/dev/null
304
    mv -v /usr/share/doc/exim-*           /mini/usr/share/doc 2>/dev/null
80 beyerle@PS 305
    mv -v /usr/share/doc/ghostscript-*    /mini/usr/share/doc 2>/dev/null
306
    mv -v /usr/share/doc/gnuplot-*        /mini/usr/share/doc 2>/dev/null
307
    mv -v /usr/share/doc/ImageMagick-*    /mini/usr/share/doc 2>/dev/null
308
    mv -v /usr/share/doc/isdn4k-utils-*   /mini/usr/share/doc 2>/dev/null
309
    mv -v /usr/share/doc/sane-backends-*  /mini/usr/share/doc 2>/dev/null
215 beyerleu 310
    mv -v /usr/share/doc/libsigc++20-*    /mini/usr/share/doc 2>/dev/null
311
    mv -v /usr/share/doc/selinux-policy-* /mini/usr/share/doc 2>/dev/null
117 beyerle@PS 312
 
313
    mkdir -p /mini/usr/share/backgrounds/images
314
    mv -v /usr/share/backgrounds/images/*.gz /mini/usr/share/backgrounds/images/ 2>/dev/null
73 beyerle@PS 315
 
1 beyerle@PS 316
    # move zipped java source to /mini, if j2sdk is installed
317
    java_src=$( rpm -ql j2sdk 2>/dev/null | grep src.zip )
80 beyerle@PS 318
    [ -e "$java_src" ] && mv -v "$java_src" /mini/
319
 
1 beyerle@PS 320
fi
321
 
322
echo "done."
323
echo "--------------------------------------------"
324
 
325
 
326
 
327
###############################################################
328
# Modify files
329
###############################################################
330
 
331
echo "Modify files ..."
332
 
211 beyerleu 333
### create /etc/sysconfig/clock, if not existing
334
if [ ! -e /etc/sysconfig/clock ]; then
335
    echo "UTC=false" >> /etc/sysconfig/clock
336
    echo "ARC=false" >> /etc/sysconfig/clock
337
fi
338
 
1 beyerle@PS 339
### remove AFS startup warning about cache
23 beyerle@PS 340
[ $PSI ] && sed  -i "/\!\!\!/d" /etc/init.d/afs
1 beyerle@PS 341
 
342
### disable umount of loop device during shutdown
343
#   this is done really dirty at the moment:
344
#    -> just replace "loop" with non existing device "lo_fake"
345
 
346
[ -e /etc/init.d/netfs ]     && sed -i "s|/loop/|/lo_fake/|g" /etc/init.d/netfs
347
[ -e /etc/init.d/autofs ]    && sed -i "s|/loop/|/lo_fake/|g" /etc/init.d/autofs
348
[ -e /etc/init.d/halt ]      && sed -i "s|/loop/|/lo_fake/|g" /etc/init.d/halt
349
[ -e /etc/init.d/functions ] && sed -i "s|/loop/|/lo_fake/|g" /etc/init.d/functions
350
 
351
# do not shuttdown loopback interface
352
sed -i "s|[^#]action \$\"Shutting down loopback interface:|\t#action \$\"Shutting down loopback interface:|" /etc/init.d/network
353
 
153 beyerle@PS 354
### suppress error message of already mounted devpts when doing mount -a
355
sed -i "s|mount -a -t nonfs,nfs4,smbfs,cifs,ncpfs,gfs$|mount -a -t nonfs,nfs4,smbfs,cifs,ncpfs,gfs 2>/dev/null|" /etc/init.d/netfs
356
 
1 beyerle@PS 357
### copy new /etc/init.d/halt 
358
cp -a customize/sl${OS_RELEASE}/halt /etc/init.d/halt
359
 
360
### in /etc/rc.d/rc.sysinit
361
#   comment out 'initlog -c "fsck -T -a $rootdev $fsckoptions"' 
362
#   to disable fsck of root filesystem
363
sed -i "s|\tfsck -T -a \$rootdev|\tsleep 0; #fsck -T -a \$rootdev|" /etc/rc.d/rc.sysinit
364
sed -i "s|\tinitlog -c \"fsck -T -a \$rootdev|\tsleep 0; #initlog -c \"fsck -T -a \$rootdev|" /etc/rc.d/rc.sysinit
365
#   disable "Remounting root filesystem in read-write mode"
153 beyerle@PS 366
sed -i "s| action \$\"Remounting root filesystem| sleep 0; #action \$\"Remounting root filesystem|" /etc/rc.d/rc.sysinit
1 beyerle@PS 367
 
368
### start afs with option -memcache !
369
if [ -e /etc/sysconfig/afs ]; then
370
    if [ $PSI ]; then
371
	sed -i "s|^EXTRA_OPTIONS=.*|EXTRA_OPTIONS='-fakestat -memcache'|" /etc/sysconfig/afs
125 beyerle@PS 372
	sed -i "s|ENABLE_MEMCACHE='no'|ENABLE_MEMCACHE='yes'|" /etc/sysconfig/afs
1 beyerle@PS 373
    else
81 beyerle@PS 374
	# for SL4
1 beyerle@PS 375
	grep -q "\-fakestat \-memcache" /etc/sysconfig/afs
376
	if [ "$?" != "0" ]; then
377
	    sed -i "s|-fakestat|-fakestat -memcache|" /etc/sysconfig/afs
378
	fi
81 beyerle@PS 379
	# for SL5
380
	rpm -q openafs | grep -q SL5
381
	if [ "$?" = "0" ]; then
382
	    sed -i "s|^OPTIONS=.*|OPTIONS=\"-memcache\"|" /etc/sysconfig/afs
383
	fi
1 beyerle@PS 384
    fi
385
fi
386
 
125 beyerle@PS 387
### source /etc/sysconfig/psi
388
[ $PSI ] && . /etc/sysconfig/psi
1 beyerle@PS 389
 
390
### Set /etc/motd
23 beyerle@PS 391
LiveCD="LiveCD"
392
[ "$ARCH" = "x86_64" ] && LiveCD="LiveCD 64bit"
393
echo "Welcome to $LIVECD_OS ${LiveCD}" > /etc/motd
394
[ $PSI ] && echo "Welcome to PSI ${LiveCD} (${CLASS} ${SUBCLASS} SL${RELEASE})" > /etc/motd
68 beyerle@PS 395
[ $DVD ]  && sed -i "s|CD|DVD|"    /etc/motd
396
[ $MINI ] && sed -i "s|CD|MiniCD|" /etc/motd
1 beyerle@PS 397
 
398
### Set hostname to psi or slinux (not really necessary)
399
if [ $PSI ]; then
400
    HOSTNAME="psi"
401
    sed -i "s/hostname=.*/hostname=${HOSTNAME}.psi.ch/" /etc/ssmtp/ssmtp.conf
125 beyerle@PS 402
    sed -i "s/HOSTNAME=.*/HOSTNAME=${HOSTNAME}/" /etc/sysconfig/psi
1 beyerle@PS 403
else
23 beyerle@PS 404
    HOSTNAME="$DEFAULT_HOSTNAME"
405
fi
1 beyerle@PS 406
 
125 beyerle@PS 407
### Change hostname
1 beyerle@PS 408
sed -i "s/HOSTNAME=.*/HOSTNAME=${HOSTNAME}/" /etc/sysconfig/network
409
sed -i "s/DHCP_HOSTNAME=.*/DHCP_HOSTNAME==${HOSTNAME}/" /etc/sysconfig/networking/devices/ifcfg-eth0 2>/dev/null
410
 
411
### Modify /etc/redhat-release
93 beyerle@PS 412
ADD=" - LiveCD"
413
[ $DVD ]  && ADD=" - LiveDVD"
414
[ $MINI ] && ADD=" - LiveMiniCD"
415
if [ -e /etc/redhat-release.ori ]; then
416
    echo "$( cat /etc/redhat-release.ori )${ADD}" > /etc/redhat-release
1 beyerle@PS 417
fi
418
 
125 beyerle@PS 419
### Set default runlevel to $RUNLEVEL
1 beyerle@PS 420
if [ $RUNLEVEL ]; then
421
    sed -i "s/id:.:initdefault:/id:$RUNLEVEL:initdefault:/" /etc/inittab
422
fi
423
 
125 beyerle@PS 424
### Edit /etc/sysconfig/desktop
1 beyerle@PS 425
if [ $DESKTOP ]; then
426
    sed -i "/^DESKTOP=.*/d" /etc/sysconfig/desktop 2&>/dev/null
427
    echo "DESKTOP=$DESKTOP" >> /etc/sysconfig/desktop
428
fi
429
if [ $DISPLAYMANAGER ]; then
430
    sed -i "/^DISPLAYMANAGER=.*/d" /etc/sysconfig/desktop 2&>/dev/null
431
    echo "DISPLAYMANAGER=$DISPLAYMANAGER" >> /etc/sysconfig/desktop
432
fi
433
 
434
### GDM login background
435
if [ -e /usr/share/gdm/themes/SL/background.png ]; then
436
    cp -a customize/sl${OS_RELEASE}/background.png /usr/share/gdm/themes/SL/background.png
437
fi
438
 
439
### KDE default background
440
if [ ! $PSI ]; then
441
    if [ -e /usr/share/backgrounds/images/default.png ]; then
442
	cp -a customize/sl${OS_RELEASE}/default.png /usr/share/backgrounds/images/default.png
443
    fi
444
fi
445
 
446
### KDE startup/exit sound
447
if [ -e /usr/share/config/knotify.eventsrc ]; then
448
    cp -a customize/sl/knotify.eventsrc /usr/share/config/knotify.eventsrc
449
    cp -a customize/sl/kmixrc /usr/share/config/kmixrc
450
fi
451
 
452
### Configure SELinux
453
if [ $SELINUX ]; then
454
    if [ -e /etc/selinux/config ]; then
455
	sed -i "s|^SELINUX=.*|SELINUX=$SELINUX|" /etc/selinux/config
456
    fi
457
fi
458
 
459
### Do not like jumping CD icon when starting autorun.desktop
460
if [ -e /etc/skel/.kde/Autostart/Autorun.desktop ]; then
461
    grep -q "StartupNotify=false" /etc/skel/.kde/Autostart/Autorun.desktop
462
    if [ "$?" != "0" ]; then
463
	echo "StartupNotify=false" >> /etc/skel/.kde/Autostart/Autorun.desktop
464
    fi
465
fi
466
 
154 beyerle@PS 467
### make thunderbird the default mail application in gnome, if evolution is not installed
468
rpm -q evolution >/dev/null 2>&1
469
if [ "$?" = "1" ]; then
470
    rpm -q thunderbird >/dev/null 2>&1
471
    if [ "$?" = "0" ]; then
472
	[ -e /etc/gconf/gconf.xml.defaults/%gconf-tree.xml ] && \
473
        sed -i.ori "s|evolution --component=mail|thunderbird -compose|" \
474
        /etc/gconf/gconf.xml.defaults/%gconf-tree.xml
475
	[ -e /etc/gconf/schemas/desktop_gnome_url_handlers.schemas ] && \
476
	sed -i.ori "s|evolution --component=mail|thunderbird -compose|" \
477
        /etc/gconf/schemas/desktop_gnome_url_handlers.schemas
192 beyerle@PS 478
 
479
	# the above may not work for SL4, this should work
480
	sed -i.ori "s|exec evolution|exec thunderbird|" /usr/bin/launchmail
154 beyerle@PS 481
    fi
482
fi
483
 
215 beyerleu 484
### fix a bug in dag's gparted
485
if [ -e /usr/bin/run-gparted ]; then
486
    grep -q "/bin/bash" /usr/bin/run-gparted
487
    if [ "$?" != "0" ]; then
488
	echo '#!/bin/bash'        > /usr/bin/run-gparted
489
	echo '/usr/sbin/gparted' >> /usr/bin/run-gparted
490
	chmod 755 /usr/bin/run-gparted
491
    fi
492
fi
493
 
1 beyerle@PS 494
echo "done."
495
echo "--------------------------------------------"
496
 
497
 
498
 
499
###############################################################
500
# Add-ons
501
###############################################################
502
 
503
echo "Add-ons ..."
504
 
505
### System icon on desktop
506
if [ -d /usr/share/apps/kdesktop/DesktopLinks ]; then
507
    cp -a customize/System.desktop /usr/share/apps/kdesktop/DesktopLinks/
508
fi
509
 
230 beyerleu 510
### configure ICEWM
511
cp -a customize/icewm/winoptions /usr/share/icewm/
512
cp -a customize/icewm/toolbar /usr/share/icewm/
513
cp -a customize/icewm/menu /usr/share/icewm/
1 beyerle@PS 514
 
230 beyerleu 515
### set SL theme as default theme for ICEWM
516
rpm -q icewm-SL-theme >/dev/null 2>&1
517
if [ "$?" = "0" ]; then
518
    echo "Theme=SL/default.theme" > /usr/share/icewm/theme
1 beyerle@PS 519
fi
520
 
230 beyerleu 521
### icons for icewm
522
cp -a /usr/share/pixmaps/qtparted.xpm /usr/share/icewm/icons/ 2>/dev/null
523
cp -a /usr/share/gftp/gftp.xpm /usr/share/icewm/icons/ 2>/dev/null
524
 
23 beyerle@PS 525
### script to install LiveCD on local harddisk
31 beyerle@PS 526
cp -a customize/livecd-install  /usr/bin/
16 beyerle@PS 527
 
52 beyerle@PS 528
### GUI for livecd-install
55 beyerle@PS 529
cp -a customize/livecd-install-gui/livecd-install-gui /usr/sbin/
66 beyerle@PS 530
ln -fs consolehelper /usr/bin/livecd-install-gui
55 beyerle@PS 531
cp -a customize/livecd-install-gui/livecd-install-gui.desktop /usr/share/applications/
532
cp -a customize/livecd-install-gui/livecd-install-gui.console.apps /etc/security/console.apps/livecd-install-gui
533
cp -a customize/livecd-install-gui/livecd-install-gui.pam.d /etc/pam.d/livecd-install-gui
52 beyerle@PS 534
 
23 beyerle@PS 535
### livecd-mkinitrd (used by livecd-install)
20 beyerle@PS 536
if [ -e customize/sl${OS_RELEASE}/livecd-mkinitrd ]; then
537
    cp -a customize/sl${OS_RELEASE}/livecd-mkinitrd /usr/sbin/
538
else
539
    cp -a /sbin/mkinitrd /usr/sbin/livecd-mkinitrd
540
fi
541
 
231 beyerleu 542
### /usr/sbin/livecd-autologin, provides directly login over xinit
543
cp -a customize/livecd-autologin /usr/sbin/livecd-autologin
544
chmod +x /usr/sbin/livecd-autologin
545
 
230 beyerleu 546
### files for PSI User, will be copied during bootup to /home/$LOCALUSER/
547
if [ $PSI ]; then
548
    rm -rf /usr/share/$LOCALUSER
549
    cp -a customize/$LOCALUSER /usr/share/
550
fi
20 beyerle@PS 551
 
230 beyerleu 552
### psi-menu, psi-scanvirus
553
if [ $PSI ]; then
554
    cp -a customize/psi/psi-menu /usr/bin/
555
    cp -a customize/psi/psi-scanvirus /usr/bin/
556
    [ -d /usr/local/uvscan ] && cp -a customize/psi/update-dat /usr/local/uvscan/
557
    [ -x /usr/bin/freshclam ] && cp -a customize/psi/psi-freshclam /usr/bin/
558
fi
559
 
1 beyerle@PS 560
echo "done."
561
echo "--------------------------------------------"
562
 
563
 
110 beyerle@PS 564
###############################################################
565
# Create missing files
566
###############################################################
1 beyerle@PS 567
 
110 beyerle@PS 568
echo "Create missing files ..."
569
 
1 beyerle@PS 570
###############################################################
110 beyerle@PS 571
# /etc/hosts
572
### copy host file, if not existing
573
[ -e /etc/hosts ] || cp -a customize/hosts /etc/hosts
574
[ -e /etc/sysconfig/networking/profiles/default/hosts ] || cp -a customize/hosts /etc/sysconfig/networking/profiles/default/hosts
575
 
576
 
577
###############################################################
578
# /etc/shadow
115 beyerle@PS 579
if [ ! -e /etc/shadow ]; then
580
    sed -i "s|\*|x|" /etc/passwd
581
    sed -i "s|^root::|root:x:|" /etc/passwd
582
    cat /etc/passwd | cut -d":" -f 1 | while read u; do echo "$u:*:12345:0:99999:1:::"; done >> /etc/shadow
583
    chmod 600 /etc/shadow
584
fi
110 beyerle@PS 585
 
586
# /etc/gshadow
587
if [ ! -e /etc/gshadow ]; then
588
    cp -a /etc/group /etc/gshadow
589
    sed -i "s|:x:|::|"       /etc/gshadow
590
    sed -i "s|:[0-9]\+:|::|" /etc/gshadow
115 beyerle@PS 591
    chmod 600 /etc/gshadow
110 beyerle@PS 592
fi
593
 
594
echo "done."
595
echo "--------------------------------------------"
596
 
597
 
598
 
599
###############################################################
1 beyerle@PS 600
# Create special files
601
###############################################################
602
 
603
echo "Create special files ..."
604
 
605
###############################################################
606
# /etc/rc.d/init.d/kudzu-auto
607
### Noninteractive HW detection and configuration
608
 
128 beyerle@PS 609
cp -a customize/kudzu-auto /etc/rc.d/init.d/kudzu-auto
1 beyerle@PS 610
chmod +x /etc/rc.d/init.d/kudzu-auto
128 beyerle@PS 611
chkconfig --add kudzu-auto
612
chkconfig kudzu-auto on
1 beyerle@PS 613
 
614
 
615
###############################################################
616
# /etc/rc.d/init.d/runveryfirst
617
### Fix some things during bootup - run VERY first
618
# runveryfirst will run at the begining of /etc/rc.d/rc.sysinit
619
 
620
cp -a customize/runveryfirst /etc/init.d/runveryfirst
621
chmod +x /etc/rc.d/init.d/runveryfirst
622
 
623
# execute runveryfirst just before "Initialize hardware"
624
grep -q runveryfirst /etc/rc.d/rc.sysinit
625
if [ "$?" != "0" ]; then
626
    sed -i -e "/^# Initialize hardware/a\/etc\/init.d\/runveryfirst" /etc/rc.d/rc.sysinit
627
fi
628
 
629
 
630
###############################################################
631
# /etc/rc.d/init.d/runfirst
632
### Fix some things during bootup - run first
633
# runfirst will run at the end of /etc/rc.d/rc.sysinit
634
 
635
cp -a customize/runfirst /etc/init.d/runfirst
636
chmod +x /etc/rc.d/init.d/runfirst
637
 
638
sysinit_line="/etc/rc.d/init.d/runfirst"
639
grep -q "$sysinit_line" /etc/rc.d/rc.sysinit
640
if [ "$?" != "0" ]; then
641
    echo "$sysinit_line" >> /etc/rc.d/rc.sysinit
642
    echo >> /etc/rc.d/rc.sysinit
643
fi
644
 
14 beyerle@PS 645
 
1 beyerle@PS 646
###############################################################
647
# /etc/rc.d/init.d/runlast
648
### Fix some things during bootup - run last
649
 
650
cp -a customize/runlast /etc/init.d/runlast
651
chmod +x /etc/rc.d/init.d/runlast
652
 
653
### Add /etc/rc.d/init.d/runlast to rc.local
654
LINE=/etc/rc.d/init.d/runlast
655
grep -q $LINE /etc/rc.d/rc.local
656
if [ "$?" != "0" ]; then
657
    # add line
658
    echo "" >> /etc/rc.d/rc.local
659
    echo $LINE >> /etc/rc.d/rc.local
660
    echo "" >> /etc/rc.d/rc.local    
661
fi
662
 
14 beyerle@PS 663
 
1 beyerle@PS 664
###############################################################
665
# /usr/bin/save-localdata
666
### stores data on a usbstick
667
cp -a customize/save-localdata /usr/bin/save-localdata
668
chmod +x /usr/bin/save-localdata
669
 
670
# add /usr/bin/save-localdata to /etc/sudoers
79 beyerle@PS 671
if [ -e /etc/sudoers ]; then
672
    grep -q "save-localdata" /etc/sudoers 2>/dev/null
673
    if [ "$?" != "0" ]; then
674
	cp -a /etc/sudoers /etc/sudoers.ori
675
	echo "$LOCALUSER ALL = NOPASSWD: /usr/bin/save-localdata" >> /etc/sudoers
676
    fi
1 beyerle@PS 677
fi
678
 
679
# create menu entry
680
cp -a customize/save-localdata.desktop /usr/share/applications/
681
 
14 beyerle@PS 682
 
1 beyerle@PS 683
###############################################################
684
# /usr/bin/set-volume
685
### unmute all mixers and set volumes
686
cp -a customize/set-volume /usr/bin/set-volume
687
chmod +x /usr/bin/set-volume
688
 
14 beyerle@PS 689
 
1 beyerle@PS 690
###############################################################
691
# /etc/sysconfig/networking/devices/ifcfg-eth0
692
# /etc/sysconfig/networking/devices/ifcfg-eth1
693
 
694
for iface in eth0 eth1; do 
695
 
696
    # remove it first
697
    rm -f /etc/sysconfig/networking/devices/ifcfg-${iface} 2>/dev/null
698
    rm -f /etc/sysconfig/networking/profiles/default/ifcfg-${iface} 2>/dev/null
699
    rm -f /etc/sysconfig/network-scripts/ifcfg-${iface} 2>/dev/null
700
 
701
    # create it, if we have a sample
702
    if [ -e customize/sl${OS_RELEASE}/ifcfg-${iface} ]; then
703
	cp -a customize/sl${OS_RELEASE}/ifcfg-${iface} /etc/sysconfig/networking/devices/ifcfg-${iface}
704
        # make hard links
705
	cp -lf /etc/sysconfig/networking/devices/ifcfg-${iface} /etc/sysconfig/networking/profiles/default/
706
	cp -lf /etc/sysconfig/networking/devices/ifcfg-${iface} /etc/sysconfig/network-scripts/
707
    fi
708
done
709
 
710
 
711
###############################################################
712
# /etc/profile.d/setsysfont.sh
713
### setsysfont 
714
cat > /etc/profile.d/setsysfont.sh <<EOF
715
# setsysfont once
716
if [ ! -e /tmp/.sysfont_has_been_set ]; then
717
    touch /tmp/.sysfont_has_been_set
718
    /bin/setfont 2>/dev/null
719
    /sbin/setsysfont 2>/dev/null
720
fi
721
EOF
722
chmod 755 /etc/profile.d/setsysfont.sh
723
 
14 beyerle@PS 724
 
1 beyerle@PS 725
###############################################################
726
# /etc/profile.d/setsysfont.csh
727
### setsysfont 
728
cat > /etc/profile.d/setsysfont.csh <<EOF
729
# setsysfont once
730
if ( ! -e /tmp/.sysfont_has_been_set ) then
731
    touch /tmp/.sysfont_has_been_set
732
    /bin/setfont 2>/dev/null
733
    /sbin/setsysfont 2>/dev/null
734
endif
735
EOF
736
chmod 755 /etc/profile.d/setsysfont.csh
737
 
14 beyerle@PS 738
 
1 beyerle@PS 739
###############################################################
740
# /etc/cron.d/psi
741
### PSI specific cronjobs
742
 
125 beyerle@PS 743
if [ $PSI ] && [ -e customize/psi/cron_psi.sl${OS_RELEASE} ]; then
744
    cp -a customize/psi/cron_psi.sl${OS_RELEASE} /etc/cron.d/psi 
14 beyerle@PS 745
    chmod +x /etc/cron.d/psi
1 beyerle@PS 746
fi
747
 
748
echo "done."
749
echo "--------------------------------------------"
750
 
751
 
752
 
753
###############################################################
754
# Configure services
755
###############################################################
756
 
757
echo "Configure services ..."
758
 
23 beyerle@PS 759
### services off
1 beyerle@PS 760
if [ $PSI ]; then
125 beyerle@PS 761
    chkconfig cfenvd off  2>/dev/null
1 beyerle@PS 762
    chkconfig cfexecd off 2>/dev/null
763
    chkconfig cfservd off 2>/dev/null
764
fi
765
if [ ! "$SERVICES_OFF" = "" ]; then
766
    for service in $SERVICES_OFF; do
767
	chkconfig $service off 2>/dev/null
768
    done
769
fi
125 beyerle@PS 770
 
771
### we do kudzu-auto
1 beyerle@PS 772
chkconfig kudzu off 
773
 
23 beyerle@PS 774
### services on
1 beyerle@PS 775
if [ ! "$SERVICES_ON" = "" ]; then
776
    for service in $SERVICES_ON; do
777
	chkconfig $service on 2>/dev/null
778
    done
779
fi
780
 
781
echo "done."
782
echo "--------------------------------------------"
783
 
784
 
785
###############################################################
786
# Empty files
787
###############################################################
788
 
789
echo "Empty files ..."
790
 
791
### /etc/security/users
792
if [ $PSI ]; then
125 beyerle@PS 793
    rm -f /etc/security/ssh.allow
794
    touch /etc/security/ssh.allow
1 beyerle@PS 795
fi
796
 
797
### Files to empty
798
FILES_TOUCH="/etc/sysconfig/hwconf \
799
             /etc/resolv.conf \
800
             /etc/adjtime \
801
             /etc/modprobe.conf \
802
             /etc/dhclient-eth0.conf"
803
 
804
for file in $FILES_TOUCH; do
805
    rm -rf $file
806
    touch $file
807
done
808
 
809
echo "done."
810
echo "--------------------------------------------"
811
 
812
 
110 beyerle@PS 813
 
1 beyerle@PS 814
###############################################################
815
# Update locate db, prelink, makewhatis
816
###############################################################
817
 
95 beyerle@PS 818
### run updatedb
1 beyerle@PS 819
if [ -x /usr/bin/updatedb ]; then
820
    echo "Run updatedb..."
821
    . /etc/updatedb.conf 2>/dev/null
822
    rpm -q mlocate >/dev/null
823
    if [ "$?" = "0" ]; then
41 beyerle@PS 824
	/usr/bin/updatedb -e "/media /sfs /tmp /boot /livecd /home /net /trunk"
1 beyerle@PS 825
    else
41 beyerle@PS 826
	/usr/bin/updatedb -e /media,/tmp,/boot,/livecd,/home,/net,/trunk
1 beyerle@PS 827
    fi
828
    echo "done."
829
fi
830
 
831
### run prelink
832
if [ -x /etc/cron.daily/prelink ]; then
833
    echo "Run prelink..."
834
    /etc/cron.daily/prelink
835
    echo "done."
836
fi
837
if [ -x /etc/cron_backup/prelink ]; then
838
    echo "Run prelink..."
839
    /etc/cron_backup/prelink
840
    echo "done."
841
fi
23 beyerle@PS 842
 
843
### clean prelink log
1 beyerle@PS 844
rm -f /var/log/prelink/prelink.log 2>/dev/null
845
rm -f /var/log/prelink.log 2>/dev/null
846
 
847
### run makewhatis
125 beyerle@PS 848
which makewhatis >/dev/null 2>&1
849
if [ "$?" = "0" ]; then
1 beyerle@PS 850
    echo "Run makewhatis..."
851
    makewhatis -u -w
852
fi
853
 
854
echo "done."
855
echo "--------------------------------------------"
856
 
857
###############################################################