Subversion Repositories livecd

Rev

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