Subversion Repositories livecd

Rev

Rev 192 | 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
284
 
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
 
290
    mkdir -p /mini
291
 
80 beyerle@PS 292
    echo "Move some folders to /mini, to save disk space:"
293
 
1 beyerle@PS 294
    # move some dirs in /usr/share/doc to /mini
295
    mkdir -p /mini/usr/share/doc
115 beyerle@PS 296
    mv -v /usr/share/doc/openafs-*        /mini/usr/share/doc 2>/dev/null
297
    mv -v /usr/share/doc/gcc-*            /mini/usr/share/doc 2>/dev/null
298
    mv -v /usr/share/doc/pine-*           /mini/usr/share/doc 2>/dev/null
299
    mv -v /usr/share/doc/ntp-*            /mini/usr/share/doc 2>/dev/null
300
    mv -v /usr/share/doc/cups-*           /mini/usr/share/doc 2>/dev/null
301
    mv -v /usr/share/doc/testdisk-*       /mini/usr/share/doc 2>/dev/null
302
    mv -v /usr/share/doc/htdig-*          /mini/usr/share/doc 2>/dev/null
303
    mv -v /usr/share/doc/gnome-vfs2-*     /mini/usr/share/doc 2>/dev/null
304
    mv -v /usr/share/doc/bash-*           /mini/usr/share/doc 2>/dev/null
305
    mv -v /usr/share/doc/exim-*           /mini/usr/share/doc 2>/dev/null
80 beyerle@PS 306
    mv -v /usr/share/doc/ghostscript-*    /mini/usr/share/doc 2>/dev/null
307
    mv -v /usr/share/doc/gnuplot-*        /mini/usr/share/doc 2>/dev/null
308
    mv -v /usr/share/doc/ImageMagick-*    /mini/usr/share/doc 2>/dev/null
309
    mv -v /usr/share/doc/isdn4k-utils-*   /mini/usr/share/doc 2>/dev/null
310
    mv -v /usr/share/doc/sane-backends-*  /mini/usr/share/doc 2>/dev/null
117 beyerle@PS 311
 
312
    mkdir -p /mini/usr/share/backgrounds/images
313
    mv -v /usr/share/backgrounds/images/*.gz /mini/usr/share/backgrounds/images/ 2>/dev/null
73 beyerle@PS 314
 
1 beyerle@PS 315
    # move zipped java source to /mini, if j2sdk is installed
316
    java_src=$( rpm -ql j2sdk 2>/dev/null | grep src.zip )
80 beyerle@PS 317
    [ -e "$java_src" ] && mv -v "$java_src" /mini/
318
 
1 beyerle@PS 319
fi
320
 
321
echo "done."
322
echo "--------------------------------------------"
323
 
324
 
325
 
326
###############################################################
327
# Modify files
328
###############################################################
329
 
330
echo "Modify files ..."
331
 
211 beyerleu 332
### create /etc/sysconfig/clock, if not existing
333
if [ ! -e /etc/sysconfig/clock ]; then
334
    echo "UTC=false" >> /etc/sysconfig/clock
335
    echo "ARC=false" >> /etc/sysconfig/clock
336
fi
337
 
1 beyerle@PS 338
### remove AFS startup warning about cache
23 beyerle@PS 339
[ $PSI ] && sed  -i "/\!\!\!/d" /etc/init.d/afs
1 beyerle@PS 340
 
341
### disable umount of loop device during shutdown
342
#   this is done really dirty at the moment:
343
#    -> just replace "loop" with non existing device "lo_fake"
344
 
345
[ -e /etc/init.d/netfs ]     && sed -i "s|/loop/|/lo_fake/|g" /etc/init.d/netfs
346
[ -e /etc/init.d/autofs ]    && sed -i "s|/loop/|/lo_fake/|g" /etc/init.d/autofs
347
[ -e /etc/init.d/halt ]      && sed -i "s|/loop/|/lo_fake/|g" /etc/init.d/halt
348
[ -e /etc/init.d/functions ] && sed -i "s|/loop/|/lo_fake/|g" /etc/init.d/functions
349
 
350
# do not shuttdown loopback interface
351
sed -i "s|[^#]action \$\"Shutting down loopback interface:|\t#action \$\"Shutting down loopback interface:|" /etc/init.d/network
352
 
153 beyerle@PS 353
### suppress error message of already mounted devpts when doing mount -a
354
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
355
 
1 beyerle@PS 356
### copy new /etc/init.d/halt 
357
cp -a customize/sl${OS_RELEASE}/halt /etc/init.d/halt
358
 
359
### in /etc/rc.d/rc.sysinit
360
#   comment out 'initlog -c "fsck -T -a $rootdev $fsckoptions"' 
361
#   to disable fsck of root filesystem
362
sed -i "s|\tfsck -T -a \$rootdev|\tsleep 0; #fsck -T -a \$rootdev|" /etc/rc.d/rc.sysinit
363
sed -i "s|\tinitlog -c \"fsck -T -a \$rootdev|\tsleep 0; #initlog -c \"fsck -T -a \$rootdev|" /etc/rc.d/rc.sysinit
364
#   disable "Remounting root filesystem in read-write mode"
153 beyerle@PS 365
sed -i "s| action \$\"Remounting root filesystem| sleep 0; #action \$\"Remounting root filesystem|" /etc/rc.d/rc.sysinit
1 beyerle@PS 366
 
367
### start afs with option -memcache !
368
if [ -e /etc/sysconfig/afs ]; then
369
    if [ $PSI ]; then
370
	sed -i "s|^EXTRA_OPTIONS=.*|EXTRA_OPTIONS='-fakestat -memcache'|" /etc/sysconfig/afs
125 beyerle@PS 371
	sed -i "s|ENABLE_MEMCACHE='no'|ENABLE_MEMCACHE='yes'|" /etc/sysconfig/afs
1 beyerle@PS 372
    else
81 beyerle@PS 373
	# for SL4
1 beyerle@PS 374
	grep -q "\-fakestat \-memcache" /etc/sysconfig/afs
375
	if [ "$?" != "0" ]; then
376
	    sed -i "s|-fakestat|-fakestat -memcache|" /etc/sysconfig/afs
377
	fi
81 beyerle@PS 378
	# for SL5
379
	rpm -q openafs | grep -q SL5
380
	if [ "$?" = "0" ]; then
381
	    sed -i "s|^OPTIONS=.*|OPTIONS=\"-memcache\"|" /etc/sysconfig/afs
382
	fi
1 beyerle@PS 383
    fi
384
fi
385
 
125 beyerle@PS 386
### source /etc/sysconfig/psi
387
[ $PSI ] && . /etc/sysconfig/psi
1 beyerle@PS 388
 
389
### Set /etc/motd
23 beyerle@PS 390
LiveCD="LiveCD"
391
[ "$ARCH" = "x86_64" ] && LiveCD="LiveCD 64bit"
392
echo "Welcome to $LIVECD_OS ${LiveCD}" > /etc/motd
393
[ $PSI ] && echo "Welcome to PSI ${LiveCD} (${CLASS} ${SUBCLASS} SL${RELEASE})" > /etc/motd
68 beyerle@PS 394
[ $DVD ]  && sed -i "s|CD|DVD|"    /etc/motd
395
[ $MINI ] && sed -i "s|CD|MiniCD|" /etc/motd
1 beyerle@PS 396
 
397
### Set hostname to psi or slinux (not really necessary)
398
if [ $PSI ]; then
399
    HOSTNAME="psi"
400
    sed -i "s/hostname=.*/hostname=${HOSTNAME}.psi.ch/" /etc/ssmtp/ssmtp.conf
125 beyerle@PS 401
    sed -i "s/HOSTNAME=.*/HOSTNAME=${HOSTNAME}/" /etc/sysconfig/psi
1 beyerle@PS 402
else
23 beyerle@PS 403
    HOSTNAME="$DEFAULT_HOSTNAME"
404
fi
1 beyerle@PS 405
 
125 beyerle@PS 406
### Change hostname
1 beyerle@PS 407
sed -i "s/HOSTNAME=.*/HOSTNAME=${HOSTNAME}/" /etc/sysconfig/network
408
sed -i "s/DHCP_HOSTNAME=.*/DHCP_HOSTNAME==${HOSTNAME}/" /etc/sysconfig/networking/devices/ifcfg-eth0 2>/dev/null
409
 
410
### Modify /etc/redhat-release
93 beyerle@PS 411
ADD=" - LiveCD"
412
[ $DVD ]  && ADD=" - LiveDVD"
413
[ $MINI ] && ADD=" - LiveMiniCD"
414
if [ -e /etc/redhat-release.ori ]; then
415
    echo "$( cat /etc/redhat-release.ori )${ADD}" > /etc/redhat-release
1 beyerle@PS 416
fi
417
 
125 beyerle@PS 418
### Set default runlevel to $RUNLEVEL
1 beyerle@PS 419
if [ $RUNLEVEL ]; then
420
    sed -i "s/id:.:initdefault:/id:$RUNLEVEL:initdefault:/" /etc/inittab
421
fi
422
 
125 beyerle@PS 423
### Edit /etc/sysconfig/desktop
1 beyerle@PS 424
if [ $DESKTOP ]; then
425
    sed -i "/^DESKTOP=.*/d" /etc/sysconfig/desktop 2&>/dev/null
426
    echo "DESKTOP=$DESKTOP" >> /etc/sysconfig/desktop
427
fi
428
if [ $DISPLAYMANAGER ]; then
429
    sed -i "/^DISPLAYMANAGER=.*/d" /etc/sysconfig/desktop 2&>/dev/null
430
    echo "DISPLAYMANAGER=$DISPLAYMANAGER" >> /etc/sysconfig/desktop
431
fi
432
 
433
### GDM login background
434
if [ -e /usr/share/gdm/themes/SL/background.png ]; then
435
    cp -a customize/sl${OS_RELEASE}/background.png /usr/share/gdm/themes/SL/background.png
436
fi
437
 
438
### KDE default background
439
if [ ! $PSI ]; then
440
    if [ -e /usr/share/backgrounds/images/default.png ]; then
441
	cp -a customize/sl${OS_RELEASE}/default.png /usr/share/backgrounds/images/default.png
442
    fi
443
fi
444
 
445
### KDE startup/exit sound
446
if [ -e /usr/share/config/knotify.eventsrc ]; then
447
    cp -a customize/sl/knotify.eventsrc /usr/share/config/knotify.eventsrc
448
    cp -a customize/sl/kmixrc /usr/share/config/kmixrc
449
fi
450
 
451
### Configure SELinux
452
if [ $SELINUX ]; then
453
    if [ -e /etc/selinux/config ]; then
454
	sed -i "s|^SELINUX=.*|SELINUX=$SELINUX|" /etc/selinux/config
455
    fi
456
fi
457
 
458
### Do not like jumping CD icon when starting autorun.desktop
459
if [ -e /etc/skel/.kde/Autostart/Autorun.desktop ]; then
460
    grep -q "StartupNotify=false" /etc/skel/.kde/Autostart/Autorun.desktop
461
    if [ "$?" != "0" ]; then
462
	echo "StartupNotify=false" >> /etc/skel/.kde/Autostart/Autorun.desktop
463
    fi
464
fi
465
 
154 beyerle@PS 466
### make thunderbird the default mail application in gnome, if evolution is not installed
467
rpm -q evolution >/dev/null 2>&1
468
if [ "$?" = "1" ]; then
469
    rpm -q thunderbird >/dev/null 2>&1
470
    if [ "$?" = "0" ]; then
471
	[ -e /etc/gconf/gconf.xml.defaults/%gconf-tree.xml ] && \
472
        sed -i.ori "s|evolution --component=mail|thunderbird -compose|" \
473
        /etc/gconf/gconf.xml.defaults/%gconf-tree.xml
474
	[ -e /etc/gconf/schemas/desktop_gnome_url_handlers.schemas ] && \
475
	sed -i.ori "s|evolution --component=mail|thunderbird -compose|" \
476
        /etc/gconf/schemas/desktop_gnome_url_handlers.schemas
192 beyerle@PS 477
 
478
	# the above may not work for SL4, this should work
479
	sed -i.ori "s|exec evolution|exec thunderbird|" /usr/bin/launchmail
154 beyerle@PS 480
    fi
481
fi
482
 
1 beyerle@PS 483
echo "done."
484
echo "--------------------------------------------"
485
 
486
 
487
 
488
###############################################################
489
# Add-ons
490
###############################################################
491
 
492
echo "Add-ons ..."
493
 
494
### System icon on desktop
495
if [ -d /usr/share/apps/kdesktop/DesktopLinks ]; then
496
    cp -a customize/System.desktop /usr/share/apps/kdesktop/DesktopLinks/
497
fi
498
 
499
### files for PSI User, will be copied during bootup to /home/$LOCALUSER/
500
if [ $PSI ]; then
501
    rm -rf /usr/share/$LOCALUSER
502
    cp -a customize/$LOCALUSER /usr/share/
503
fi
504
 
505
### psi-menu, psi-scanvirus
506
if [ $PSI ]; then
507
    cp -a customize/psi/psi-menu /usr/bin/
508
    cp -a customize/psi/psi-scanvirus /usr/bin/
509
    [ -d /usr/local/uvscan ] && cp -a customize/psi/update-dat /usr/local/uvscan/
510
    [ -x /usr/bin/freshclam ] && cp -a customize/psi/psi-freshclam /usr/bin/
511
fi
512
 
23 beyerle@PS 513
### script to install LiveCD on local harddisk
31 beyerle@PS 514
cp -a customize/livecd-install  /usr/bin/
16 beyerle@PS 515
 
52 beyerle@PS 516
### GUI for livecd-install
55 beyerle@PS 517
cp -a customize/livecd-install-gui/livecd-install-gui /usr/sbin/
66 beyerle@PS 518
ln -fs consolehelper /usr/bin/livecd-install-gui
55 beyerle@PS 519
cp -a customize/livecd-install-gui/livecd-install-gui.desktop /usr/share/applications/
520
cp -a customize/livecd-install-gui/livecd-install-gui.console.apps /etc/security/console.apps/livecd-install-gui
521
cp -a customize/livecd-install-gui/livecd-install-gui.pam.d /etc/pam.d/livecd-install-gui
52 beyerle@PS 522
 
23 beyerle@PS 523
### livecd-mkinitrd (used by livecd-install)
20 beyerle@PS 524
if [ -e customize/sl${OS_RELEASE}/livecd-mkinitrd ]; then
525
    cp -a customize/sl${OS_RELEASE}/livecd-mkinitrd /usr/sbin/
526
else
527
    cp -a /sbin/mkinitrd /usr/sbin/livecd-mkinitrd
528
fi
529
 
530
 
1 beyerle@PS 531
echo "done."
532
echo "--------------------------------------------"
533
 
534
 
110 beyerle@PS 535
###############################################################
536
# Create missing files
537
###############################################################
1 beyerle@PS 538
 
110 beyerle@PS 539
echo "Create missing files ..."
540
 
1 beyerle@PS 541
###############################################################
110 beyerle@PS 542
# /etc/hosts
543
### copy host file, if not existing
544
[ -e /etc/hosts ] || cp -a customize/hosts /etc/hosts
545
[ -e /etc/sysconfig/networking/profiles/default/hosts ] || cp -a customize/hosts /etc/sysconfig/networking/profiles/default/hosts
546
 
547
 
548
###############################################################
549
# /etc/shadow
115 beyerle@PS 550
if [ ! -e /etc/shadow ]; then
551
    sed -i "s|\*|x|" /etc/passwd
552
    sed -i "s|^root::|root:x:|" /etc/passwd
553
    cat /etc/passwd | cut -d":" -f 1 | while read u; do echo "$u:*:12345:0:99999:1:::"; done >> /etc/shadow
554
    chmod 600 /etc/shadow
555
fi
110 beyerle@PS 556
 
557
# /etc/gshadow
558
if [ ! -e /etc/gshadow ]; then
559
    cp -a /etc/group /etc/gshadow
560
    sed -i "s|:x:|::|"       /etc/gshadow
561
    sed -i "s|:[0-9]\+:|::|" /etc/gshadow
115 beyerle@PS 562
    chmod 600 /etc/gshadow
110 beyerle@PS 563
fi
564
 
565
echo "done."
566
echo "--------------------------------------------"
567
 
568
 
569
 
570
###############################################################
1 beyerle@PS 571
# Create special files
572
###############################################################
573
 
574
echo "Create special files ..."
575
 
576
###############################################################
577
# /etc/rc.d/init.d/kudzu-auto
578
### Noninteractive HW detection and configuration
579
 
128 beyerle@PS 580
cp -a customize/kudzu-auto /etc/rc.d/init.d/kudzu-auto
1 beyerle@PS 581
chmod +x /etc/rc.d/init.d/kudzu-auto
128 beyerle@PS 582
chkconfig --add kudzu-auto
583
chkconfig kudzu-auto on
1 beyerle@PS 584
 
585
 
586
###############################################################
587
# /etc/rc.d/init.d/runveryfirst
588
### Fix some things during bootup - run VERY first
589
# runveryfirst will run at the begining of /etc/rc.d/rc.sysinit
590
 
591
cp -a customize/runveryfirst /etc/init.d/runveryfirst
592
chmod +x /etc/rc.d/init.d/runveryfirst
593
 
594
# execute runveryfirst just before "Initialize hardware"
595
grep -q runveryfirst /etc/rc.d/rc.sysinit
596
if [ "$?" != "0" ]; then
597
    sed -i -e "/^# Initialize hardware/a\/etc\/init.d\/runveryfirst" /etc/rc.d/rc.sysinit
598
fi
599
 
600
 
601
###############################################################
602
# /etc/rc.d/init.d/runfirst
603
### Fix some things during bootup - run first
604
# runfirst will run at the end of /etc/rc.d/rc.sysinit
605
 
606
cp -a customize/runfirst /etc/init.d/runfirst
607
chmod +x /etc/rc.d/init.d/runfirst
608
 
609
sysinit_line="/etc/rc.d/init.d/runfirst"
610
grep -q "$sysinit_line" /etc/rc.d/rc.sysinit
611
if [ "$?" != "0" ]; then
612
    echo "$sysinit_line" >> /etc/rc.d/rc.sysinit
613
    echo >> /etc/rc.d/rc.sysinit
614
fi
615
 
14 beyerle@PS 616
 
1 beyerle@PS 617
###############################################################
618
# /etc/rc.d/init.d/runlast
619
### Fix some things during bootup - run last
620
 
621
cp -a customize/runlast /etc/init.d/runlast
622
chmod +x /etc/rc.d/init.d/runlast
623
 
624
### Add /etc/rc.d/init.d/runlast to rc.local
625
LINE=/etc/rc.d/init.d/runlast
626
grep -q $LINE /etc/rc.d/rc.local
627
if [ "$?" != "0" ]; then
628
    # add line
629
    echo "" >> /etc/rc.d/rc.local
630
    echo $LINE >> /etc/rc.d/rc.local
631
    echo "" >> /etc/rc.d/rc.local    
632
fi
633
 
14 beyerle@PS 634
 
1 beyerle@PS 635
###############################################################
636
# /usr/bin/save-localdata
637
### stores data on a usbstick
638
cp -a customize/save-localdata /usr/bin/save-localdata
639
chmod +x /usr/bin/save-localdata
640
 
641
# add /usr/bin/save-localdata to /etc/sudoers
79 beyerle@PS 642
if [ -e /etc/sudoers ]; then
643
    grep -q "save-localdata" /etc/sudoers 2>/dev/null
644
    if [ "$?" != "0" ]; then
645
	cp -a /etc/sudoers /etc/sudoers.ori
646
	echo "$LOCALUSER ALL = NOPASSWD: /usr/bin/save-localdata" >> /etc/sudoers
647
    fi
1 beyerle@PS 648
fi
649
 
650
# create menu entry
651
cp -a customize/save-localdata.desktop /usr/share/applications/
652
 
14 beyerle@PS 653
 
1 beyerle@PS 654
###############################################################
655
# /usr/bin/set-volume
656
### unmute all mixers and set volumes
657
cp -a customize/set-volume /usr/bin/set-volume
658
chmod +x /usr/bin/set-volume
659
 
14 beyerle@PS 660
 
1 beyerle@PS 661
###############################################################
662
# /etc/sysconfig/networking/devices/ifcfg-eth0
663
# /etc/sysconfig/networking/devices/ifcfg-eth1
664
 
665
for iface in eth0 eth1; do 
666
 
667
    # remove it first
668
    rm -f /etc/sysconfig/networking/devices/ifcfg-${iface} 2>/dev/null
669
    rm -f /etc/sysconfig/networking/profiles/default/ifcfg-${iface} 2>/dev/null
670
    rm -f /etc/sysconfig/network-scripts/ifcfg-${iface} 2>/dev/null
671
 
672
    # create it, if we have a sample
673
    if [ -e customize/sl${OS_RELEASE}/ifcfg-${iface} ]; then
674
	cp -a customize/sl${OS_RELEASE}/ifcfg-${iface} /etc/sysconfig/networking/devices/ifcfg-${iface}
675
        # make hard links
676
	cp -lf /etc/sysconfig/networking/devices/ifcfg-${iface} /etc/sysconfig/networking/profiles/default/
677
	cp -lf /etc/sysconfig/networking/devices/ifcfg-${iface} /etc/sysconfig/network-scripts/
678
    fi
679
done
680
 
681
 
682
###############################################################
683
# /etc/profile.d/setsysfont.sh
684
### setsysfont 
685
cat > /etc/profile.d/setsysfont.sh <<EOF
686
# setsysfont once
687
if [ ! -e /tmp/.sysfont_has_been_set ]; then
688
    touch /tmp/.sysfont_has_been_set
689
    /bin/setfont 2>/dev/null
690
    /sbin/setsysfont 2>/dev/null
691
fi
692
EOF
693
chmod 755 /etc/profile.d/setsysfont.sh
694
 
14 beyerle@PS 695
 
1 beyerle@PS 696
###############################################################
697
# /etc/profile.d/setsysfont.csh
698
### setsysfont 
699
cat > /etc/profile.d/setsysfont.csh <<EOF
700
# setsysfont once
701
if ( ! -e /tmp/.sysfont_has_been_set ) then
702
    touch /tmp/.sysfont_has_been_set
703
    /bin/setfont 2>/dev/null
704
    /sbin/setsysfont 2>/dev/null
705
endif
706
EOF
707
chmod 755 /etc/profile.d/setsysfont.csh
708
 
14 beyerle@PS 709
 
1 beyerle@PS 710
###############################################################
711
# /etc/cron.d/psi
712
### PSI specific cronjobs
713
 
125 beyerle@PS 714
if [ $PSI ] && [ -e customize/psi/cron_psi.sl${OS_RELEASE} ]; then
715
    cp -a customize/psi/cron_psi.sl${OS_RELEASE} /etc/cron.d/psi 
14 beyerle@PS 716
    chmod +x /etc/cron.d/psi
1 beyerle@PS 717
fi
718
 
719
echo "done."
720
echo "--------------------------------------------"
721
 
722
 
723
 
724
###############################################################
725
# Configure services
726
###############################################################
727
 
728
echo "Configure services ..."
729
 
23 beyerle@PS 730
### services off
1 beyerle@PS 731
if [ $PSI ]; then
125 beyerle@PS 732
    chkconfig cfenvd off  2>/dev/null
1 beyerle@PS 733
    chkconfig cfexecd off 2>/dev/null
734
    chkconfig cfservd off 2>/dev/null
735
fi
736
if [ ! "$SERVICES_OFF" = "" ]; then
737
    for service in $SERVICES_OFF; do
738
	chkconfig $service off 2>/dev/null
739
    done
740
fi
125 beyerle@PS 741
 
742
### we do kudzu-auto
1 beyerle@PS 743
chkconfig kudzu off 
744
 
23 beyerle@PS 745
### services on
1 beyerle@PS 746
if [ ! "$SERVICES_ON" = "" ]; then
747
    for service in $SERVICES_ON; do
748
	chkconfig $service on 2>/dev/null
749
    done
750
fi
751
 
752
echo "done."
753
echo "--------------------------------------------"
754
 
755
 
756
###############################################################
757
# Empty files
758
###############################################################
759
 
760
echo "Empty files ..."
761
 
762
### /etc/security/users
763
if [ $PSI ]; then
125 beyerle@PS 764
    rm -f /etc/security/ssh.allow
765
    touch /etc/security/ssh.allow
1 beyerle@PS 766
fi
767
 
768
### Files to empty
769
FILES_TOUCH="/etc/sysconfig/hwconf \
770
             /etc/resolv.conf \
771
             /etc/adjtime \
772
             /etc/modprobe.conf \
773
             /etc/dhclient-eth0.conf"
774
 
775
for file in $FILES_TOUCH; do
776
    rm -rf $file
777
    touch $file
778
done
779
 
780
echo "done."
781
echo "--------------------------------------------"
782
 
783
 
110 beyerle@PS 784
 
1 beyerle@PS 785
###############################################################
786
# Update locate db, prelink, makewhatis
787
###############################################################
788
 
95 beyerle@PS 789
### run updatedb
1 beyerle@PS 790
if [ -x /usr/bin/updatedb ]; then
791
    echo "Run updatedb..."
792
    . /etc/updatedb.conf 2>/dev/null
793
    rpm -q mlocate >/dev/null
794
    if [ "$?" = "0" ]; then
41 beyerle@PS 795
	/usr/bin/updatedb -e "/media /sfs /tmp /boot /livecd /home /net /trunk"
1 beyerle@PS 796
    else
41 beyerle@PS 797
	/usr/bin/updatedb -e /media,/tmp,/boot,/livecd,/home,/net,/trunk
1 beyerle@PS 798
    fi
799
    echo "done."
800
fi
801
 
802
### run prelink
803
if [ -x /etc/cron.daily/prelink ]; then
804
    echo "Run prelink..."
805
    /etc/cron.daily/prelink
806
    echo "done."
807
fi
808
if [ -x /etc/cron_backup/prelink ]; then
809
    echo "Run prelink..."
810
    /etc/cron_backup/prelink
811
    echo "done."
812
fi
23 beyerle@PS 813
 
814
### clean prelink log
1 beyerle@PS 815
rm -f /var/log/prelink/prelink.log 2>/dev/null
816
rm -f /var/log/prelink.log 2>/dev/null
817
 
818
### run makewhatis
125 beyerle@PS 819
which makewhatis >/dev/null 2>&1
820
if [ "$?" = "0" ]; then
1 beyerle@PS 821
    echo "Run makewhatis..."
822
    makewhatis -u -w
823
fi
824
 
825
echo "done."
826
echo "--------------------------------------------"
827
 
828
###############################################################