Subversion Repositories livecd

Rev

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