Subversion Repositories livecd

Rev

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