Subversion Repositories livecd

Rev

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