Subversion Repositories livecd

Rev

Rev 55 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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