Subversion Repositories livecd

Rev

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