Subversion Repositories livecd

Rev

Rev 1 | 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
#
10
# Urs Beyerle, PSI
11
#
12
###############################################################
13
 
14
# source livecd.conf
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
 
63
### arch x86_64 or i686 ?
64
ARCH=$( /bin/arch )
65
[ "$ARCH" != "x86_64" ] && ARCH=i686
66
 
67
### Local username
68
if [ $PSI ]; then
69
    LOCALUSER=l_psi
70
else
71
    LOCALUSER=sluser
72
fi
73
 
74
 
75
###############################################################
76
# Backup some original files
77
###############################################################
78
 
79
echo "Backup original files ..."
80
 
81
ori_files="/etc/init.d/netfs \
82
           /etc/init.d/autofs \
83
           /etc/init.d/halt \
84
           /etc/init.d/network
85
           /etc/init.d/functions \
86
           /etc/rc.d/rc.sysinit \
87
           /etc/sysconfig/afs \
88
           /etc/motd \
89
           /etc/redhat-release \
90
           /etc/rc.d/rc.sysinit \
91
           /etc/resolv.conf"
92
 
93
for file in $ori_files; do
94
    [ ! -e ${file}.ori ] && cp -a ${file} ${file}.ori 2>/dev/null
95
done
96
 
97
 
98
 
99
###############################################################
100
# Configure system
101
###############################################################
102
 
103
echo "Configure system ..."
104
 
105
# build nvidia kernel modules
106
if [ -x /usr/sbin/mknvidia ]; then
107
    mknvidia
108
fi
109
 
110
# build vpnclient kernel module
111
if [ -x /usr/sbin/mkvpnclient ]; then
112
    mkvpnclient
113
fi
114
 
115
# Update Virus definitions 
116
# run freshclam
117
if [ -x /usr/bin/freshclam ]; then
118
    echo; echo "Run /usr/bin/freshclam:"
119
    /etc/init.d/clamd status || /etc/init.d/clamd start && /usr/bin/freshclam
120
    /etc/init.d/clamd stop
121
    echo
122
fi
123
# update f-prot and uvscan
124
[ -x /usr/local/f-prot/tools/check-updates.pl ] && /usr/local/f-prot/tools/check-updates.pl
125
[ -x /usr/local/uvscan/update-dat ] && /usr/local/uvscan/update-dat
126
 
127
# run depmod -a for the LiveCD kernels
128
echo "Run depmod -a $KERNEL ..."; depmod -a $KERNEL
129
if [ $SMP ]; then
130
    echo "Run depmod -a ${KERNEL}smp ..."
131
    depmod -a ${KERNEL}smp
132
fi
133
 
134
# delete users (just to be sure)
135
userdel -r $LOCALUSER 2>/dev/null
136
userdel -r l_psi 2>/dev/null
137
userdel -r sluser 2>/dev/null
138
userdel -r user 2>/dev/null
139
 
140
# move /opt to /usr/opt and link /opt -> /usr/opt
141
# (if not already yet done before)
142
if [ ! -L /opt ]; then
143
    echo "Move /opt to /usr/opt"
144
    mv /opt /usr/
145
    ln -s /usr/opt /opt
146
fi
147
 
148
# umount PSI master
149
if [ $PSI ]; then
150
    umount /mnt/master 2>/dev/null
151
fi
152
 
153
# copy back /etc/yum.repos.d
154
if [ ! $PSI ]; then
155
    if [ -d /etc/yum.repos.d.ori ]; then
156
	cp -a /etc/yum.repos.d.ori /etc/yum.repos.d
157
    fi
158
fi
159
 
160
# run cfagent
161
if [ $PSI ]; then
162
    # cfagent needs running afs
163
    /etc/init.d/afs start
164
    echo "Run cfagent ..."
165
    cfagent
166
fi
167
 
168
echo "done."
169
echo "--------------------------------------------"
170
 
171
 
172
 
173
###############################################################
174
# Clean up and delete files
175
###############################################################
176
 
177
echo "Cleaning up ..."
178
 
179
### set LANG
180
export LANG=C
181
 
182
### stop AFS
183
/etc/init.d/afs stop 2>/dev/null
184
 
185
### clean up yum
186
yum clean all >/dev/null
187
rm -rf /var/cache/yum/*
188
 
189
### remove cfengine log files
190
rm -f /var/cfengine/*log
191
 
192
### delete log files
193
find /var/log/ -type f -exec rm -f {} \;
194
 
195
### clean rpm database
196
rm -rf /var/lib/rpm/__db.*
197
 
198
### clean /var/spool/mail
199
rm -rf /var/spool/mail/*
200
touch /var/spool/mail/root
201
chmod 600 /var/spool/mail/root
202
 
203
### delete .cfsaved Files
204
if [ $PSI ]; then
205
    echo -n "Delete .cfsaved Files, please wait: "
206
    find / -xdev -name "*\.cfsaved" -exec rm -f {} \;
207
    echo "ok."
208
fi
209
 
210
### delete .rpmori .rpm Files in /etc
211
find /etc -name "*\.rpmorig" -exec rm -f {} \;
212
find /etc -name "*\.rpmnew"  -exec rm -f {} \;
213
 
214
### delete *~ files in /etc
215
find /etc | grep "~$" | while read f; do rm -f "$f"; done
216
 
217
### clean up /root
218
rm -f /root/.bash_history
219
rm -f /root/.ssh/known_hosts
220
 
221
### clean AFS cache
222
if [ -d /usr/vice/cache ]; then
223
    rm -rf /usr/vice/cache
224
    mkdir /usr/vice/cache
225
fi
226
if [ -d /var/cache/openafs ]; then
227
    rm -rf /var/cache/openafs
228
    mkdir /var/cache/openafs
229
fi
230
 
231
### clean up /var/tmp
232
rm -rf /var/tmp/*
233
 
234
### remove root passwd
235
sed -i "s|^root:.*|root:\*:12943:0:99999:7:::|" /etc/shadow
236
sed -i "s|^root:.*:0:0|root:x:0:0|" /etc/passwd
237
 
238
### remove /.autofsck
239
rm -rf /.autofsck
240
 
241
### disable cfagent
242
rm -f /etc/cron.d/cfengine
243
 
244
### disable check_update in rc.local.psi
245
if [ $PSI ]; then
246
    sed -i "s|/etc/init.d/check_update|# /etc/init.d/check_update|" /etc/rc.d/rc.local.psi
247
fi
248
 
249
### create in /boot link to LiveCD kernel(s)
250
ln -fs /boot/vmlinuz-$KERNEL /boot/vmlinuz
251
[ $SMP ] && ln -fs /boot/vmlinuz-${KERNEL}smp /boot/vmlinuz${SMP}
252
 
253
### Files to remove
254
FILES_REMOVE="/etc/ssh/ssh_host_key \
255
              /etc/ssh/ssh_host_key.pub \
256
              /etc/ssh/ssh_host_rsa_key.pub \
257
              /etc/ssh/ssh_host_dsa_key \
258
              /etc/ssh/ssh_host_dsa_key.pub"
259
for file in $FILES_REMOVE; do
260
    rm -rf $file
261
done
262
 
263
### remove useless cronjobs
264
mkdir -p /etc/cron_backup
265
mv /etc/cron.d/sysstat /etc/cron_backup/ 2>/dev/null
266
mv /etc/cron.daily/00-makewhatis.cron /etc/cron_backup/ 2>/dev/null
267
mv /etc/cron.weekly/00-makewhatis.cron /etc/cron_backup/00-makewhatis.cron.weekly 2>/dev/null
268
mv /etc/cron.daily/rpm /etc/cron_backup/ 2>/dev/null
269
mv /etc/cron.daily/slocate.cron /etc/cron_backup/ 2>/dev/null
270
mv /etc/cron.daily/tetex.cron /etc/cron_backup/ 2>/dev/null
271
mv /etc/cron.daily/yum.cron /etc/cron_backup/ 2>/dev/null
272
mv /etc/cron.daily/prelink /etc/cron_backup/ 2>/dev/null
273
mv /etc/cron.daily/00-logwatch /etc/cron_backup/ 2>/dev/null
274
 
275
### remove desktop entry from crossover
276
if [ $PSI ]; then
277
    rm -rf "/usr/share/apps/kdesktop/DesktopLinks/Internet Explorer.desktop"
278
fi
279
 
280
### remove backup of /etc/X11/xorg.conf
281
rm -f /etc/X11/xorg.conf.ori 2>/dev/null
282
rm -f /etc/X11/xorg.conf.backup 2>/dev/null
283
 
284
### remove unused dirs in /lib/modules
285
ls /lib/modules/ | grep -v $KERNEL | while read mod_dir; do
286
    rpm -qf --quiet /lib/modules/$mod_dir
287
    if [ $? != "0" ]; then
288
	if [ $mod_dir != "" ]; then
289
	    cleaned_dir=/tmp/cleaned-$( date +%Y%m%d%H%M )
290
	    mkdir -p $cleaned_dir
291
            echo "Move dir /lib/modules/$mod_dir to $cleaned_dir"
292
	    mv -f /lib/modules/$mod_dir $cleaned_dir/
293
        fi
294
    fi
295
done
296
 
297
### move some unneeded files to /mini (not for LiveDVD and miniCD)
298
if [ ! $DVD ] && [ ! $MINI ]; then
299
    # to save disk space
300
 
301
    mkdir -p /mini
302
 
303
    # move some dirs in /usr/share/doc to /mini
304
    mkdir -p /mini/usr/share/doc
305
    mv /usr/share/doc/openafs-* /mini/usr/share/doc 2>/dev/null
306
    mv /usr/share/doc/gcc-*     /mini/usr/share/doc 2>/dev/null
307
    mv /usr/share/doc/pine-*     /mini/usr/share/doc 2>/dev/null
308
    mv /usr/share/doc/ntp-*     /mini/usr/share/doc 2>/dev/null
309
 
310
    # move zipped java source to /mini, if j2sdk is installed
311
    java_src=$( rpm -ql j2sdk 2>/dev/null | grep src.zip )
312
    [ -e "$java_src" ] && mv "$java_src" /mini/
313
fi
314
 
315
echo "done."
316
echo "--------------------------------------------"
317
 
318
 
319
 
320
###############################################################
321
# Modify files
322
###############################################################
323
 
324
echo "Modify files ..."
325
 
326
### remove AFS startup warning about cache
327
if [ $PSI ]; then
328
    sed  -i "/\!\!\!/d" /etc/init.d/afs
329
fi
330
 
331
### disable umount of loop device during shutdown
332
#   this is done really dirty at the moment:
333
#    -> just replace "loop" with non existing device "lo_fake"
334
 
335
[ -e /etc/init.d/netfs ]     && sed -i "s|/loop/|/lo_fake/|g" /etc/init.d/netfs
336
[ -e /etc/init.d/autofs ]    && sed -i "s|/loop/|/lo_fake/|g" /etc/init.d/autofs
337
[ -e /etc/init.d/halt ]      && sed -i "s|/loop/|/lo_fake/|g" /etc/init.d/halt
338
[ -e /etc/init.d/functions ] && sed -i "s|/loop/|/lo_fake/|g" /etc/init.d/functions
339
 
340
# do not shuttdown loopback interface
341
sed -i "s|[^#]action \$\"Shutting down loopback interface:|\t#action \$\"Shutting down loopback interface:|" /etc/init.d/network
342
 
343
### copy new /etc/init.d/halt 
344
cp -a customize/sl${OS_RELEASE}/halt /etc/init.d/halt
345
 
346
### in /etc/rc.d/rc.sysinit
347
#   comment out 'initlog -c "fsck -T -a $rootdev $fsckoptions"' 
348
#   to disable fsck of root filesystem
349
sed -i "s|\tfsck -T -a \$rootdev|\tsleep 0; #fsck -T -a \$rootdev|" /etc/rc.d/rc.sysinit
350
sed -i "s|\tinitlog -c \"fsck -T -a \$rootdev|\tsleep 0; #initlog -c \"fsck -T -a \$rootdev|" /etc/rc.d/rc.sysinit
351
#   disable "Remounting root filesystem in read-write mode"
352
sed -i "s| action \$\"Remounting root filesystem|#action \$\"Remounting root filesystem|" /etc/rc.d/rc.sysinit
353
 
354
### start afs with option -memcache !
355
if [ -e /etc/sysconfig/afs ]; then
356
    if [ $PSI ]; then
357
	sed -i "s|^EXTRA_OPTIONS=.*|EXTRA_OPTIONS='-fakestat -memcache'|" /etc/sysconfig/afs
358
    else
359
	grep -q "\-fakestat \-memcache" /etc/sysconfig/afs
360
	if [ "$?" != "0" ]; then
361
	    sed -i "s|-fakestat|-fakestat -memcache|" /etc/sysconfig/afs
362
	fi
363
    fi
364
fi
365
 
366
### source /etc/sysconfig/cfengine
367
[ $PSI ] && . /etc/sysconfig/cfengine
368
 
369
### Set /etc/motd
370
if [ "$ARCH" = "x86_64" ]; then
371
    LiveCD="LiveCD 64bit"
372
else
373
    LiveCD="LiveCD"
374
fi
375
 
376
if [ $PSI ]; then
377
    echo "Welcome to PSI ${LiveCD} (${CLASS} ${SUBCLASS} SL${RELEASE})" > /etc/motd
378
else
379
    echo "Welcome to $LIVECD_OS ${LiveCD}" > /etc/motd
380
fi
381
 
382
### Set hostname to psi or slinux (not really necessary)
383
if [ $PSI ]; then
384
    HOSTNAME="psi"
385
    sed -i "s/hostname=.*/hostname=${HOSTNAME}.psi.ch/" /etc/ssmtp/ssmtp.conf
386
    sed -i "s/HOSTNAME=.*/HOSTNAME=${HOSTNAME}/" /etc/sysconfig/cfengine
387
else
388
    HOSTNAME="slinux"
389
fi  
390
 
391
# change hostname
392
sed -i "s/HOSTNAME=.*/HOSTNAME=${HOSTNAME}/" /etc/sysconfig/network
393
sed -i "s/DHCP_HOSTNAME=.*/DHCP_HOSTNAME==${HOSTNAME}/" /etc/sysconfig/networking/devices/ifcfg-eth0 2>/dev/null
394
 
395
### Modify /etc/redhat-release
396
ADD=" - LiveCD"
397
grep -q "$ADD" /etc/redhat-release
398
if [ "$?" != "0" ]; then
399
    echo "$( cat /etc/redhat-release )${ADD}" > /etc/redhat-release
400
fi
401
if [ $DVD ]; then
402
    sed -i "s|CD|DVD|" /etc/redhat-release
403
fi
404
 
405
### Make scratch
406
if [ $PSI ]; then
407
    rm -rf /home/scratch
408
    mkdir -p /home/scratch
409
    chmod 1777 /home/scratch
410
    rm -rf /scratch
411
    ln -s /home/scratch /scratch
412
else
413
    rm -rf /home/scratch
414
    rm -rf /scratch
415
    mkdir -p /scratch
416
    chmod 1777 /scratch
417
fi
418
 
419
### set default runlevel to $RUNLEVEL
420
if [ $RUNLEVEL ]; then
421
    sed -i "s/id:.:initdefault:/id:$RUNLEVEL:initdefault:/" /etc/inittab
422
fi
423
 
424
### edit /etc/sysconfig/desktop
425
if [ $DESKTOP ]; then
426
    sed -i "/^DESKTOP=.*/d" /etc/sysconfig/desktop 2&>/dev/null
427
    echo "DESKTOP=$DESKTOP" >> /etc/sysconfig/desktop
428
fi
429
if [ $DISPLAYMANAGER ]; then
430
    sed -i "/^DISPLAYMANAGER=.*/d" /etc/sysconfig/desktop 2&>/dev/null
431
    echo "DISPLAYMANAGER=$DISPLAYMANAGER" >> /etc/sysconfig/desktop
432
fi
433
 
434
### GDM login background
435
if [ -e /usr/share/gdm/themes/SL/background.png ]; then
436
    cp -a customize/sl${OS_RELEASE}/background.png /usr/share/gdm/themes/SL/background.png
437
fi
438
 
439
### KDE default background
440
if [ ! $PSI ]; then
441
    if [ -e /usr/share/backgrounds/images/default.png ]; then
442
	cp -a customize/sl${OS_RELEASE}/default.png /usr/share/backgrounds/images/default.png
443
    fi
444
fi
445
 
446
### KDE startup/exit sound
447
if [ -e /usr/share/config/knotify.eventsrc ]; then
448
    cp -a customize/sl/knotify.eventsrc /usr/share/config/knotify.eventsrc
449
    cp -a customize/sl/kmixrc /usr/share/config/kmixrc
450
fi
451
 
452
### KDE session manager; start at login
453
#   kmix, krandrtray
454
if [ -e /usr/share/config/ksmserverrc ]; then
455
    cp -a customize/sl/ksmserverrc /usr/share/config/ksmserverrc
456
fi    
457
 
458
### Configure SELinux
459
if [ $SELINUX ]; then
460
    if [ -e /etc/selinux/config ]; then
461
	sed -i "s|^SELINUX=.*|SELINUX=$SELINUX|" /etc/selinux/config
462
    fi
463
fi
464
 
465
### Do not like jumping CD icon when starting autorun.desktop
466
if [ -e /etc/skel/.kde/Autostart/Autorun.desktop ]; then
467
    grep -q "StartupNotify=false" /etc/skel/.kde/Autostart/Autorun.desktop
468
    if [ "$?" != "0" ]; then
469
	echo "StartupNotify=false" >> /etc/skel/.kde/Autostart/Autorun.desktop
470
    fi
471
fi
472
 
473
echo "done."
474
echo "--------------------------------------------"
475
 
476
 
477
 
478
###############################################################
479
# Add-ons
480
###############################################################
481
 
482
echo "Add-ons ..."
483
 
484
### System icon on desktop
485
if [ -d /usr/share/apps/kdesktop/DesktopLinks ]; then
486
    cp -a customize/System.desktop /usr/share/apps/kdesktop/DesktopLinks/
487
fi
488
 
489
### files for PSI User, will be copied during bootup to /home/$LOCALUSER/
490
if [ $PSI ]; then
491
    rm -rf /usr/share/$LOCALUSER
492
    cp -a customize/$LOCALUSER /usr/share/
493
fi
494
 
495
### psi-menu, psi-scanvirus
496
if [ $PSI ]; then
497
    cp -a customize/psi/psi-menu /usr/bin/
498
    cp -a customize/psi/psi-scanvirus /usr/bin/
499
    [ -d /usr/local/uvscan ] && cp -a customize/psi/update-dat /usr/local/uvscan/
500
    [ -x /usr/bin/freshclam ] && cp -a customize/psi/psi-freshclam /usr/bin/
501
fi
502
 
503
echo "done."
504
echo "--------------------------------------------"
505
 
506
 
507
 
508
###############################################################
509
# Create special files
510
###############################################################
511
 
512
echo "Create special files ..."
513
 
514
###############################################################
515
# /etc/rc.d/init.d/kudzu-auto
516
### Noninteractive HW detection and configuration
517
 
518
cp -a customize/kudzu-auto /etc/init.d/kudzu-auto
519
chmod +x /etc/rc.d/init.d/kudzu-auto
520
ln -sf /etc/rc.d/init.d/kudzu-auto /etc/rc.d/rc5.d/S04kudzu-auto
521
ln -sf /etc/rc.d/init.d/kudzu-auto /etc/rc.d/rc3.d/S04kudzu-auto
522
 
523
 
524
###############################################################
525
# /etc/rc.d/init.d/runveryfirst
526
### Fix some things during bootup - run VERY first
527
# runveryfirst will run at the begining of /etc/rc.d/rc.sysinit
528
 
529
cp -a customize/runveryfirst /etc/init.d/runveryfirst
530
chmod +x /etc/rc.d/init.d/runveryfirst
531
 
532
# execute runveryfirst just before "Initialize hardware"
533
grep -q runveryfirst /etc/rc.d/rc.sysinit
534
if [ "$?" != "0" ]; then
535
    sed -i -e "/^# Initialize hardware/a\/etc\/init.d\/runveryfirst" /etc/rc.d/rc.sysinit
536
fi
537
 
538
 
539
###############################################################
540
# /etc/rc.d/init.d/runfirst
541
### Fix some things during bootup - run first
542
# runfirst will run at the end of /etc/rc.d/rc.sysinit
543
 
544
cp -a customize/runfirst /etc/init.d/runfirst
545
chmod +x /etc/rc.d/init.d/runfirst
546
 
547
sysinit_line="/etc/rc.d/init.d/runfirst"
548
grep -q "$sysinit_line" /etc/rc.d/rc.sysinit
549
if [ "$?" != "0" ]; then
550
    echo "$sysinit_line" >> /etc/rc.d/rc.sysinit
551
    echo >> /etc/rc.d/rc.sysinit
552
fi
553
 
14 beyerle@PS 554
 
1 beyerle@PS 555
###############################################################
556
# /etc/rc.d/init.d/login
557
### Provides directly login over xinit
558
 
559
cp -a customize/login /etc/init.d/login
560
chmod +x /etc/rc.d/init.d/login
561
 
562
 
563
###############################################################
564
# /etc/rc.d/init.d/runlast
565
### Fix some things during bootup - run last
566
 
567
cp -a customize/runlast /etc/init.d/runlast
568
chmod +x /etc/rc.d/init.d/runlast
569
 
570
### Add /etc/rc.d/init.d/runlast to rc.local
571
LINE=/etc/rc.d/init.d/runlast
572
grep -q $LINE /etc/rc.d/rc.local
573
if [ "$?" != "0" ]; then
574
    # add line
575
    echo "" >> /etc/rc.d/rc.local
576
    echo $LINE >> /etc/rc.d/rc.local
577
    echo "" >> /etc/rc.d/rc.local    
578
fi
579
 
14 beyerle@PS 580
 
1 beyerle@PS 581
###############################################################
582
# /usr/bin/save-localdata
583
### stores data on a usbstick
584
cp -a customize/save-localdata /usr/bin/save-localdata
585
chmod +x /usr/bin/save-localdata
586
 
587
# add /usr/bin/save-localdata to /etc/sudoers
588
grep -q "save-localdata" /etc/sudoers 2>/dev/null
589
if [ "$?" != "0" ]; then
590
    echo "$LOCALUSER ALL = NOPASSWD: /usr/bin/save-localdata" >> /etc/sudoers
591
fi
592
 
593
# create menu entry
594
cp -a customize/save-localdata.desktop /usr/share/applications/
595
 
14 beyerle@PS 596
 
1 beyerle@PS 597
###############################################################
598
# /usr/bin/set-volume
599
### unmute all mixers and set volumes
600
cp -a customize/set-volume /usr/bin/set-volume
601
chmod +x /usr/bin/set-volume
602
 
14 beyerle@PS 603
 
1 beyerle@PS 604
###############################################################
605
# /etc/sysconfig/networking/devices/ifcfg-eth0
606
# /etc/sysconfig/networking/devices/ifcfg-eth1
607
 
608
for iface in eth0 eth1; do 
609
 
610
    # remove it first
611
    rm -f /etc/sysconfig/networking/devices/ifcfg-${iface} 2>/dev/null
612
    rm -f /etc/sysconfig/networking/profiles/default/ifcfg-${iface} 2>/dev/null
613
    rm -f /etc/sysconfig/network-scripts/ifcfg-${iface} 2>/dev/null
614
 
615
    # create it, if we have a sample
616
    if [ -e customize/sl${OS_RELEASE}/ifcfg-${iface} ]; then
617
	cp -a customize/sl${OS_RELEASE}/ifcfg-${iface} /etc/sysconfig/networking/devices/ifcfg-${iface}
618
        # make hard links
619
	cp -lf /etc/sysconfig/networking/devices/ifcfg-${iface} /etc/sysconfig/networking/profiles/default/
620
	cp -lf /etc/sysconfig/networking/devices/ifcfg-${iface} /etc/sysconfig/network-scripts/
621
    fi
622
done
623
 
624
 
625
###############################################################
626
# /etc/profile.d/setsysfont.sh
627
### setsysfont 
628
cat > /etc/profile.d/setsysfont.sh <<EOF
629
# setsysfont once
630
if [ ! -e /tmp/.sysfont_has_been_set ]; then
631
    touch /tmp/.sysfont_has_been_set
632
    /bin/setfont 2>/dev/null
633
    /sbin/setsysfont 2>/dev/null
634
fi
635
EOF
636
chmod 755 /etc/profile.d/setsysfont.sh
637
 
14 beyerle@PS 638
 
1 beyerle@PS 639
###############################################################
640
# /etc/profile.d/setsysfont.csh
641
### setsysfont 
642
cat > /etc/profile.d/setsysfont.csh <<EOF
643
# setsysfont once
644
if ( ! -e /tmp/.sysfont_has_been_set ) then
645
    touch /tmp/.sysfont_has_been_set
646
    /bin/setfont 2>/dev/null
647
    /sbin/setsysfont 2>/dev/null
648
endif
649
EOF
650
chmod 755 /etc/profile.d/setsysfont.csh
651
 
14 beyerle@PS 652
 
1 beyerle@PS 653
###############################################################
654
# /etc/cron.d/psi
655
### PSI specific cronjobs
656
 
14 beyerle@PS 657
if [ $PSI ]; then
658
    cp -a customize/psi/cron_psi /etc/cron.d/psi
659
    chmod +x /etc/cron.d/psi
1 beyerle@PS 660
fi
661
 
662
echo "done."
663
echo "--------------------------------------------"
664
 
665
 
666
 
667
###############################################################
668
# Configure services
669
###############################################################
670
 
671
echo "Configure services ..."
672
 
673
# services off
674
 
675
if [ $PSI ]; then
676
    chkconfig cfenvd off 2>/dev/null
677
    chkconfig cfexecd off 2>/dev/null
678
    chkconfig cfservd off 2>/dev/null
679
fi
680
if [ ! "$SERVICES_OFF" = "" ]; then
681
    for service in $SERVICES_OFF; do
682
	chkconfig $service off 2>/dev/null
683
    done
684
fi
685
# we do kudzu-auto
686
chkconfig kudzu off 
687
 
688
 
689
# services on
690
 
691
if [ $PSI ]; then
692
    chkconfig vpnclient_init on 2>/dev/null
693
fi
694
if [ ! "$SERVICES_ON" = "" ]; then
695
    for service in $SERVICES_ON; do
696
	chkconfig $service on 2>/dev/null
697
    done
698
fi
699
 
700
echo "done."
701
echo "--------------------------------------------"
702
 
703
 
704
###############################################################
705
# Empty files
706
###############################################################
707
 
708
echo "Empty files ..."
709
 
710
### /etc/security/users
711
if [ $PSI ]; then
712
    rm -f /etc/security/users
713
    touch /etc/security/users
714
fi
715
 
716
### Files to empty
717
FILES_TOUCH="/etc/sysconfig/hwconf \
718
             /etc/resolv.conf \
719
             /etc/adjtime \
720
             /etc/modprobe.conf \
721
             /etc/dhclient-eth0.conf"
722
 
723
for file in $FILES_TOUCH; do
724
    rm -rf $file
725
    touch $file
726
done
727
 
728
echo "done."
729
echo "--------------------------------------------"
730
 
731
 
732
###############################################################
733
# Update locate db, prelink, makewhatis
734
###############################################################
735
 
736
### run slocate
737
if [ -x /usr/bin/updatedb ]; then
738
    echo "Run updatedb..."
739
    . /etc/updatedb.conf 2>/dev/null
740
    rpm -q mlocate >/dev/null
741
    if [ "$?" = "0" ]; then
742
	/usr/bin/updatedb -e "/media /sfs /tmp /boot /livecd /home /net"
743
    else
744
	/usr/bin/updatedb -e /media,/tmp,/boot,/livecd,/home,/net
745
    fi
746
    echo "done."
747
fi
748
 
749
### run prelink
750
if [ -x /etc/cron.daily/prelink ]; then
751
    echo "Run prelink..."
752
    /etc/cron.daily/prelink
753
    echo "done."
754
fi
755
if [ -x /etc/cron_backup/prelink ]; then
756
    echo "Run prelink..."
757
    /etc/cron_backup/prelink
758
    echo "done."
759
fi
760
# clean log
761
rm -f /var/log/prelink/prelink.log 2>/dev/null
762
rm -f /var/log/prelink.log 2>/dev/null
763
 
764
### run makewhatis
765
if [ -x /usr/bin/makewhatis ]; then
766
    echo "Run makewhatis..."
767
    makewhatis -u -w
768
fi
769
 
770
echo "done."
771
echo "--------------------------------------------"
772
 
773
###############################################################