Subversion Repositories livecd

Rev

Rev 66 | 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
56 beyerle@PS 209
rm -f  /root/.bash_history
210
rm -f  /root/.ssh/known_hosts
211
rm -rf /root/.subversion
1 beyerle@PS 212
 
213
### clean AFS cache
214
if [ -d /usr/vice/cache ]; then
215
    rm -rf /usr/vice/cache
216
    mkdir /usr/vice/cache
217
fi
218
if [ -d /var/cache/openafs ]; then
219
    rm -rf /var/cache/openafs
220
    mkdir /var/cache/openafs
221
fi
222
 
223
### clean up /var/tmp
224
rm -rf /var/tmp/*
225
 
226
### remove root passwd
227
sed -i "s|^root:.*|root:\*:12943:0:99999:7:::|" /etc/shadow
228
sed -i "s|^root:.*:0:0|root:x:0:0|" /etc/passwd
229
 
230
### remove /.autofsck
23 beyerle@PS 231
rm -f /.autofsck
1 beyerle@PS 232
 
233
### disable cfagent
234
rm -f /etc/cron.d/cfengine
235
 
236
### disable check_update in rc.local.psi
23 beyerle@PS 237
[ $PSI ] && sed -i "s|/etc/init.d/check_update|# /etc/init.d/check_update|" /etc/rc.d/rc.local.psi
1 beyerle@PS 238
 
239
### create in /boot link to LiveCD kernel(s)
240
ln -fs /boot/vmlinuz-$KERNEL /boot/vmlinuz
241
[ $SMP ] && ln -fs /boot/vmlinuz-${KERNEL}smp /boot/vmlinuz${SMP}
242
 
243
### Files to remove
244
FILES_REMOVE="/etc/ssh/ssh_host_key \
245
              /etc/ssh/ssh_host_key.pub \
246
              /etc/ssh/ssh_host_rsa_key.pub \
247
              /etc/ssh/ssh_host_dsa_key \
248
              /etc/ssh/ssh_host_dsa_key.pub"
249
for file in $FILES_REMOVE; do
23 beyerle@PS 250
    rm -f $file
1 beyerle@PS 251
done
252
 
253
### remove useless cronjobs
254
mkdir -p /etc/cron_backup
255
mv /etc/cron.d/sysstat /etc/cron_backup/ 2>/dev/null
256
mv /etc/cron.daily/00-makewhatis.cron /etc/cron_backup/ 2>/dev/null
257
mv /etc/cron.weekly/00-makewhatis.cron /etc/cron_backup/00-makewhatis.cron.weekly 2>/dev/null
258
mv /etc/cron.daily/rpm /etc/cron_backup/ 2>/dev/null
259
mv /etc/cron.daily/slocate.cron /etc/cron_backup/ 2>/dev/null
260
mv /etc/cron.daily/tetex.cron /etc/cron_backup/ 2>/dev/null
261
mv /etc/cron.daily/yum.cron /etc/cron_backup/ 2>/dev/null
262
mv /etc/cron.daily/prelink /etc/cron_backup/ 2>/dev/null
263
mv /etc/cron.daily/00-logwatch /etc/cron_backup/ 2>/dev/null
264
 
265
### remove desktop entry from crossover
23 beyerle@PS 266
[ $PSI ] && rm -f "/usr/share/apps/kdesktop/DesktopLinks/Internet Explorer.desktop"
1 beyerle@PS 267
 
268
### remove backup of /etc/X11/xorg.conf
269
rm -f /etc/X11/xorg.conf.ori 2>/dev/null
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)
286
if [ ! $DVD ] && [ ! $MINI ]; then
287
    # to save disk space
288
 
289
    mkdir -p /mini
290
 
291
    # move some dirs in /usr/share/doc to /mini
292
    mkdir -p /mini/usr/share/doc
293
    mv /usr/share/doc/openafs-* /mini/usr/share/doc 2>/dev/null
294
    mv /usr/share/doc/gcc-*     /mini/usr/share/doc 2>/dev/null
295
    mv /usr/share/doc/pine-*     /mini/usr/share/doc 2>/dev/null
296
    mv /usr/share/doc/ntp-*     /mini/usr/share/doc 2>/dev/null
297
 
298
    # move zipped java source to /mini, if j2sdk is installed
299
    java_src=$( rpm -ql j2sdk 2>/dev/null | grep src.zip )
300
    [ -e "$java_src" ] && mv "$java_src" /mini/
301
fi
302
 
33 beyerle@PS 303
### remove /etc/rc.d/init.d/login (should only be on Mini LiveCD)
304
##  this will be obsolete soon.
305
rm -f /etc/rc.d/init.d/login
306
 
307
 
1 beyerle@PS 308
echo "done."
309
echo "--------------------------------------------"
310
 
311
 
312
 
313
###############################################################
314
# Modify files
315
###############################################################
316
 
317
echo "Modify files ..."
318
 
319
### remove AFS startup warning about cache
23 beyerle@PS 320
[ $PSI ] && sed  -i "/\!\!\!/d" /etc/init.d/afs
1 beyerle@PS 321
 
322
### disable umount of loop device during shutdown
323
#   this is done really dirty at the moment:
324
#    -> just replace "loop" with non existing device "lo_fake"
325
 
326
[ -e /etc/init.d/netfs ]     && sed -i "s|/loop/|/lo_fake/|g" /etc/init.d/netfs
327
[ -e /etc/init.d/autofs ]    && sed -i "s|/loop/|/lo_fake/|g" /etc/init.d/autofs
328
[ -e /etc/init.d/halt ]      && sed -i "s|/loop/|/lo_fake/|g" /etc/init.d/halt
329
[ -e /etc/init.d/functions ] && sed -i "s|/loop/|/lo_fake/|g" /etc/init.d/functions
330
 
331
# do not shuttdown loopback interface
332
sed -i "s|[^#]action \$\"Shutting down loopback interface:|\t#action \$\"Shutting down loopback interface:|" /etc/init.d/network
333
 
334
### copy new /etc/init.d/halt 
335
cp -a customize/sl${OS_RELEASE}/halt /etc/init.d/halt
336
 
337
### in /etc/rc.d/rc.sysinit
338
#   comment out 'initlog -c "fsck -T -a $rootdev $fsckoptions"' 
339
#   to disable fsck of root filesystem
340
sed -i "s|\tfsck -T -a \$rootdev|\tsleep 0; #fsck -T -a \$rootdev|" /etc/rc.d/rc.sysinit
341
sed -i "s|\tinitlog -c \"fsck -T -a \$rootdev|\tsleep 0; #initlog -c \"fsck -T -a \$rootdev|" /etc/rc.d/rc.sysinit
342
#   disable "Remounting root filesystem in read-write mode"
343
sed -i "s| action \$\"Remounting root filesystem|#action \$\"Remounting root filesystem|" /etc/rc.d/rc.sysinit
344
 
345
### start afs with option -memcache !
346
if [ -e /etc/sysconfig/afs ]; then
347
    if [ $PSI ]; then
348
	sed -i "s|^EXTRA_OPTIONS=.*|EXTRA_OPTIONS='-fakestat -memcache'|" /etc/sysconfig/afs
349
    else
350
	grep -q "\-fakestat \-memcache" /etc/sysconfig/afs
351
	if [ "$?" != "0" ]; then
352
	    sed -i "s|-fakestat|-fakestat -memcache|" /etc/sysconfig/afs
353
	fi
354
    fi
355
fi
356
 
357
### source /etc/sysconfig/cfengine
358
[ $PSI ] && . /etc/sysconfig/cfengine
359
 
360
### Set /etc/motd
23 beyerle@PS 361
LiveCD="LiveCD"
362
[ "$ARCH" = "x86_64" ] && LiveCD="LiveCD 64bit"
363
echo "Welcome to $LIVECD_OS ${LiveCD}" > /etc/motd
364
[ $PSI ] && echo "Welcome to PSI ${LiveCD} (${CLASS} ${SUBCLASS} SL${RELEASE})" > /etc/motd
1 beyerle@PS 365
 
366
### Set hostname to psi or slinux (not really necessary)
367
if [ $PSI ]; then
368
    HOSTNAME="psi"
369
    sed -i "s/hostname=.*/hostname=${HOSTNAME}.psi.ch/" /etc/ssmtp/ssmtp.conf
370
    sed -i "s/HOSTNAME=.*/HOSTNAME=${HOSTNAME}/" /etc/sysconfig/cfengine
371
else
23 beyerle@PS 372
    HOSTNAME="$DEFAULT_HOSTNAME"
373
fi
1 beyerle@PS 374
 
375
# change hostname
376
sed -i "s/HOSTNAME=.*/HOSTNAME=${HOSTNAME}/" /etc/sysconfig/network
377
sed -i "s/DHCP_HOSTNAME=.*/DHCP_HOSTNAME==${HOSTNAME}/" /etc/sysconfig/networking/devices/ifcfg-eth0 2>/dev/null
378
 
379
### Modify /etc/redhat-release
67 beyerle@PS 380
ADD=" - Live"
1 beyerle@PS 381
grep -q "$ADD" /etc/redhat-release
382
if [ "$?" != "0" ]; then
67 beyerle@PS 383
    echo "$( cat /etc/redhat-release )${ADD}CD" > /etc/redhat-release
1 beyerle@PS 384
fi
67 beyerle@PS 385
[ $DVD ]  && sed -i "s|CD|DVD|"    /etc/redhat-release
386
[ $MINI ] && sed -i "s|CD|MiniCD|" /etc/redhat-release
1 beyerle@PS 387
 
388
### Make scratch
389
if [ $PSI ]; then
390
    rm -rf /home/scratch
391
    mkdir -p /home/scratch
392
    chmod 1777 /home/scratch
393
    rm -rf /scratch
394
    ln -s /home/scratch /scratch
395
else
396
    rm -rf /home/scratch
397
    rm -rf /scratch
398
    mkdir -p /scratch
399
    chmod 1777 /scratch
400
fi
401
 
402
### set default runlevel to $RUNLEVEL
403
if [ $RUNLEVEL ]; then
404
    sed -i "s/id:.:initdefault:/id:$RUNLEVEL:initdefault:/" /etc/inittab
405
fi
406
 
407
### edit /etc/sysconfig/desktop
408
if [ $DESKTOP ]; then
409
    sed -i "/^DESKTOP=.*/d" /etc/sysconfig/desktop 2&>/dev/null
410
    echo "DESKTOP=$DESKTOP" >> /etc/sysconfig/desktop
411
fi
412
if [ $DISPLAYMANAGER ]; then
413
    sed -i "/^DISPLAYMANAGER=.*/d" /etc/sysconfig/desktop 2&>/dev/null
414
    echo "DISPLAYMANAGER=$DISPLAYMANAGER" >> /etc/sysconfig/desktop
415
fi
416
 
417
### GDM login background
418
if [ -e /usr/share/gdm/themes/SL/background.png ]; then
419
    cp -a customize/sl${OS_RELEASE}/background.png /usr/share/gdm/themes/SL/background.png
420
fi
421
 
422
### KDE default background
423
if [ ! $PSI ]; then
424
    if [ -e /usr/share/backgrounds/images/default.png ]; then
425
	cp -a customize/sl${OS_RELEASE}/default.png /usr/share/backgrounds/images/default.png
426
    fi
427
fi
428
 
429
### KDE startup/exit sound
430
if [ -e /usr/share/config/knotify.eventsrc ]; then
431
    cp -a customize/sl/knotify.eventsrc /usr/share/config/knotify.eventsrc
432
    cp -a customize/sl/kmixrc /usr/share/config/kmixrc
433
fi
434
 
435
### KDE session manager; start at login
436
#   kmix, krandrtray
437
if [ -e /usr/share/config/ksmserverrc ]; then
438
    cp -a customize/sl/ksmserverrc /usr/share/config/ksmserverrc
439
fi    
440
 
441
### Configure SELinux
442
if [ $SELINUX ]; then
443
    if [ -e /etc/selinux/config ]; then
444
	sed -i "s|^SELINUX=.*|SELINUX=$SELINUX|" /etc/selinux/config
445
    fi
446
fi
447
 
448
### Do not like jumping CD icon when starting autorun.desktop
449
if [ -e /etc/skel/.kde/Autostart/Autorun.desktop ]; then
450
    grep -q "StartupNotify=false" /etc/skel/.kde/Autostart/Autorun.desktop
451
    if [ "$?" != "0" ]; then
452
	echo "StartupNotify=false" >> /etc/skel/.kde/Autostart/Autorun.desktop
453
    fi
454
fi
455
 
456
echo "done."
457
echo "--------------------------------------------"
458
 
459
 
460
 
461
###############################################################
462
# Add-ons
463
###############################################################
464
 
465
echo "Add-ons ..."
466
 
467
### System icon on desktop
468
if [ -d /usr/share/apps/kdesktop/DesktopLinks ]; then
469
    cp -a customize/System.desktop /usr/share/apps/kdesktop/DesktopLinks/
470
fi
471
 
472
### files for PSI User, will be copied during bootup to /home/$LOCALUSER/
473
if [ $PSI ]; then
474
    rm -rf /usr/share/$LOCALUSER
475
    cp -a customize/$LOCALUSER /usr/share/
476
fi
477
 
478
### psi-menu, psi-scanvirus
479
if [ $PSI ]; then
480
    cp -a customize/psi/psi-menu /usr/bin/
481
    cp -a customize/psi/psi-scanvirus /usr/bin/
482
    [ -d /usr/local/uvscan ] && cp -a customize/psi/update-dat /usr/local/uvscan/
483
    [ -x /usr/bin/freshclam ] && cp -a customize/psi/psi-freshclam /usr/bin/
484
fi
485
 
23 beyerle@PS 486
### script to install LiveCD on local harddisk
31 beyerle@PS 487
cp -a customize/livecd-install  /usr/bin/
16 beyerle@PS 488
 
52 beyerle@PS 489
### GUI for livecd-install
55 beyerle@PS 490
cp -a customize/livecd-install-gui/livecd-install-gui /usr/sbin/
66 beyerle@PS 491
ln -fs consolehelper /usr/bin/livecd-install-gui
55 beyerle@PS 492
cp -a customize/livecd-install-gui/livecd-install-gui.desktop /usr/share/applications/
493
cp -a customize/livecd-install-gui/livecd-install-gui.console.apps /etc/security/console.apps/livecd-install-gui
494
cp -a customize/livecd-install-gui/livecd-install-gui.pam.d /etc/pam.d/livecd-install-gui
52 beyerle@PS 495
 
55 beyerle@PS 496
 
23 beyerle@PS 497
### livecd-mkinitrd (used by livecd-install)
20 beyerle@PS 498
if [ -e customize/sl${OS_RELEASE}/livecd-mkinitrd ]; then
499
    cp -a customize/sl${OS_RELEASE}/livecd-mkinitrd /usr/sbin/
500
else
501
    cp -a /sbin/mkinitrd /usr/sbin/livecd-mkinitrd
502
fi
503
 
504
 
1 beyerle@PS 505
echo "done."
506
echo "--------------------------------------------"
507
 
508
 
509
 
510
###############################################################
511
# Create special files
512
###############################################################
513
 
514
echo "Create special files ..."
515
 
516
###############################################################
517
# /etc/rc.d/init.d/kudzu-auto
518
### Noninteractive HW detection and configuration
519
 
520
cp -a customize/kudzu-auto /etc/init.d/kudzu-auto
521
chmod +x /etc/rc.d/init.d/kudzu-auto
522
ln -sf /etc/rc.d/init.d/kudzu-auto /etc/rc.d/rc5.d/S04kudzu-auto
523
ln -sf /etc/rc.d/init.d/kudzu-auto /etc/rc.d/rc3.d/S04kudzu-auto
524
 
525
 
526
###############################################################
527
# /etc/rc.d/init.d/runveryfirst
528
### Fix some things during bootup - run VERY first
529
# runveryfirst will run at the begining of /etc/rc.d/rc.sysinit
530
 
531
cp -a customize/runveryfirst /etc/init.d/runveryfirst
532
chmod +x /etc/rc.d/init.d/runveryfirst
533
 
534
# execute runveryfirst just before "Initialize hardware"
535
grep -q runveryfirst /etc/rc.d/rc.sysinit
536
if [ "$?" != "0" ]; then
537
    sed -i -e "/^# Initialize hardware/a\/etc\/init.d\/runveryfirst" /etc/rc.d/rc.sysinit
538
fi
539
 
540
 
541
###############################################################
542
# /etc/rc.d/init.d/runfirst
543
### Fix some things during bootup - run first
544
# runfirst will run at the end of /etc/rc.d/rc.sysinit
545
 
546
cp -a customize/runfirst /etc/init.d/runfirst
547
chmod +x /etc/rc.d/init.d/runfirst
548
 
549
sysinit_line="/etc/rc.d/init.d/runfirst"
550
grep -q "$sysinit_line" /etc/rc.d/rc.sysinit
551
if [ "$?" != "0" ]; then
552
    echo "$sysinit_line" >> /etc/rc.d/rc.sysinit
553
    echo >> /etc/rc.d/rc.sysinit
554
fi
555
 
14 beyerle@PS 556
 
1 beyerle@PS 557
###############################################################
558
# /etc/rc.d/init.d/runlast
559
### Fix some things during bootup - run last
560
 
561
cp -a customize/runlast /etc/init.d/runlast
562
chmod +x /etc/rc.d/init.d/runlast
563
 
564
### Add /etc/rc.d/init.d/runlast to rc.local
565
LINE=/etc/rc.d/init.d/runlast
566
grep -q $LINE /etc/rc.d/rc.local
567
if [ "$?" != "0" ]; then
568
    # add line
569
    echo "" >> /etc/rc.d/rc.local
570
    echo $LINE >> /etc/rc.d/rc.local
571
    echo "" >> /etc/rc.d/rc.local    
572
fi
573
 
14 beyerle@PS 574
 
1 beyerle@PS 575
###############################################################
576
# /usr/bin/save-localdata
577
### stores data on a usbstick
578
cp -a customize/save-localdata /usr/bin/save-localdata
579
chmod +x /usr/bin/save-localdata
580
 
581
# add /usr/bin/save-localdata to /etc/sudoers
582
grep -q "save-localdata" /etc/sudoers 2>/dev/null
583
if [ "$?" != "0" ]; then
584
    echo "$LOCALUSER ALL = NOPASSWD: /usr/bin/save-localdata" >> /etc/sudoers
585
fi
586
 
587
# create menu entry
588
cp -a customize/save-localdata.desktop /usr/share/applications/
589
 
14 beyerle@PS 590
 
1 beyerle@PS 591
###############################################################
592
# /usr/bin/set-volume
593
### unmute all mixers and set volumes
594
cp -a customize/set-volume /usr/bin/set-volume
595
chmod +x /usr/bin/set-volume
596
 
14 beyerle@PS 597
 
1 beyerle@PS 598
###############################################################
599
# /etc/sysconfig/networking/devices/ifcfg-eth0
600
# /etc/sysconfig/networking/devices/ifcfg-eth1
601
 
602
for iface in eth0 eth1; do 
603
 
604
    # remove it first
605
    rm -f /etc/sysconfig/networking/devices/ifcfg-${iface} 2>/dev/null
606
    rm -f /etc/sysconfig/networking/profiles/default/ifcfg-${iface} 2>/dev/null
607
    rm -f /etc/sysconfig/network-scripts/ifcfg-${iface} 2>/dev/null
608
 
609
    # create it, if we have a sample
610
    if [ -e customize/sl${OS_RELEASE}/ifcfg-${iface} ]; then
611
	cp -a customize/sl${OS_RELEASE}/ifcfg-${iface} /etc/sysconfig/networking/devices/ifcfg-${iface}
612
        # make hard links
613
	cp -lf /etc/sysconfig/networking/devices/ifcfg-${iface} /etc/sysconfig/networking/profiles/default/
614
	cp -lf /etc/sysconfig/networking/devices/ifcfg-${iface} /etc/sysconfig/network-scripts/
615
    fi
616
done
617
 
618
 
619
###############################################################
620
# /etc/profile.d/setsysfont.sh
621
### setsysfont 
622
cat > /etc/profile.d/setsysfont.sh <<EOF
623
# setsysfont once
624
if [ ! -e /tmp/.sysfont_has_been_set ]; then
625
    touch /tmp/.sysfont_has_been_set
626
    /bin/setfont 2>/dev/null
627
    /sbin/setsysfont 2>/dev/null
628
fi
629
EOF
630
chmod 755 /etc/profile.d/setsysfont.sh
631
 
14 beyerle@PS 632
 
1 beyerle@PS 633
###############################################################
634
# /etc/profile.d/setsysfont.csh
635
### setsysfont 
636
cat > /etc/profile.d/setsysfont.csh <<EOF
637
# setsysfont once
638
if ( ! -e /tmp/.sysfont_has_been_set ) then
639
    touch /tmp/.sysfont_has_been_set
640
    /bin/setfont 2>/dev/null
641
    /sbin/setsysfont 2>/dev/null
642
endif
643
EOF
644
chmod 755 /etc/profile.d/setsysfont.csh
645
 
14 beyerle@PS 646
 
1 beyerle@PS 647
###############################################################
648
# /etc/cron.d/psi
649
### PSI specific cronjobs
650
 
14 beyerle@PS 651
if [ $PSI ]; then
652
    cp -a customize/psi/cron_psi /etc/cron.d/psi
653
    chmod +x /etc/cron.d/psi
1 beyerle@PS 654
fi
655
 
656
echo "done."
657
echo "--------------------------------------------"
658
 
659
 
660
 
661
###############################################################
662
# Configure services
663
###############################################################
664
 
665
echo "Configure services ..."
666
 
23 beyerle@PS 667
### services off
1 beyerle@PS 668
 
669
if [ $PSI ]; then
670
    chkconfig cfenvd off 2>/dev/null
671
    chkconfig cfexecd off 2>/dev/null
672
    chkconfig cfservd off 2>/dev/null
673
fi
674
if [ ! "$SERVICES_OFF" = "" ]; then
675
    for service in $SERVICES_OFF; do
676
	chkconfig $service off 2>/dev/null
677
    done
678
fi
679
# we do kudzu-auto
680
chkconfig kudzu off 
681
 
682
 
23 beyerle@PS 683
### services on
1 beyerle@PS 684
 
685
if [ $PSI ]; then
686
    chkconfig vpnclient_init on 2>/dev/null
687
fi
688
if [ ! "$SERVICES_ON" = "" ]; then
689
    for service in $SERVICES_ON; do
690
	chkconfig $service on 2>/dev/null
691
    done
692
fi
693
 
694
echo "done."
695
echo "--------------------------------------------"
696
 
697
 
698
###############################################################
699
# Empty files
700
###############################################################
701
 
702
echo "Empty files ..."
703
 
704
### /etc/security/users
705
if [ $PSI ]; then
706
    rm -f /etc/security/users
707
    touch /etc/security/users
708
fi
709
 
710
### Files to empty
711
FILES_TOUCH="/etc/sysconfig/hwconf \
712
             /etc/resolv.conf \
713
             /etc/adjtime \
714
             /etc/modprobe.conf \
715
             /etc/dhclient-eth0.conf"
716
 
717
for file in $FILES_TOUCH; do
718
    rm -rf $file
719
    touch $file
720
done
721
 
722
echo "done."
723
echo "--------------------------------------------"
724
 
725
 
726
###############################################################
727
# Update locate db, prelink, makewhatis
728
###############################################################
729
 
730
### run slocate
731
if [ -x /usr/bin/updatedb ]; then
732
    echo "Run updatedb..."
733
    . /etc/updatedb.conf 2>/dev/null
734
    rpm -q mlocate >/dev/null
735
    if [ "$?" = "0" ]; then
41 beyerle@PS 736
	/usr/bin/updatedb -e "/media /sfs /tmp /boot /livecd /home /net /trunk"
1 beyerle@PS 737
    else
41 beyerle@PS 738
	/usr/bin/updatedb -e /media,/tmp,/boot,/livecd,/home,/net,/trunk
1 beyerle@PS 739
    fi
740
    echo "done."
741
fi
742
 
743
### run prelink
744
if [ -x /etc/cron.daily/prelink ]; then
745
    echo "Run prelink..."
746
    /etc/cron.daily/prelink
747
    echo "done."
748
fi
749
if [ -x /etc/cron_backup/prelink ]; then
750
    echo "Run prelink..."
751
    /etc/cron_backup/prelink
752
    echo "done."
753
fi
23 beyerle@PS 754
 
755
### clean prelink log
1 beyerle@PS 756
rm -f /var/log/prelink/prelink.log 2>/dev/null
757
rm -f /var/log/prelink.log 2>/dev/null
758
 
759
### run makewhatis
760
if [ -x /usr/bin/makewhatis ]; then
761
    echo "Run makewhatis..."
762
    makewhatis -u -w
763
fi
764
 
765
echo "done."
766
echo "--------------------------------------------"
767
 
768
###############################################################