Subversion Repositories livecd

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
269 beyerleu 1
########################################################################
2
#
3
#  LiveDVD with gnome dekstop
4
#
5
########################################################################
6
 
7
lang en_US.UTF-8
8
keyboard us
9
timezone US/Eastern
10
auth --useshadow --enablemd5
11
selinux --enforcing
12
firewall --enabled --service=mdns
13
repo --name=base     --baseurl=http://ftp.scientificlinux.org/linux/scientific/6rolling/$basearch/os/
14
repo --name=updates  --baseurl=http://ftp.scientificlinux.org/linux/scientific/6rolling/$basearch/updates/
15
xconfig --startxonboot
16
part / --size 8192 --fstype ext4
17
services --enabled=NetworkManager --disabled=network,sshd
18
 
19
%packages
20
syslinux
21
kernel
22
 
23
@backup-client
24
@base
25
 #package added to @base
26
  squashfs-tools
27
@basic-desktop
28
@core
29
@desktop-platform
30
@dial-up
31
@emacs
32
@fonts
33
@general-desktop
34
@graphical-admin-tools
35
@graphics
36
@input-methods
37
@internet-applications
38
 #package added to @internet-applications
39
 thunderbird
40
 xchat
41
@internet-browser
42
@java-platform
43
@network-file-system-client
44
@network-tools
45
 #package added to @network-tools
46
 nmap
47
@office-suite
48
@performance
49
@perl-runtime
50
@print-client
51
@remote-desktop-clients
52
 #packages added to @remote-desktop-clients
53
 rdesktop
54
 tsclient
55
@scientific
56
@security-tools
57
@system-admin-tools
58
@system-management
59
@technical-writing
60
@tex
61
@x11
62
 
63
# other usefull packages
64
busybox
65
mailx
66
memtest86+
67
livecd-tools
68
 
69
# livecd bits to set up the livecd and be able to install
70
anaconda
71
device-mapper-multipath
72
isomd5sum
73
 
74
# more groups added 
75
@backup-server
76
@compat-libraries
77
@console-internet
78
 lftp
79
@development
80
@directory-client
81
@eclipse
82
@hardware-monitoring
83
@ice-desktop
84
@kde-desktop
85
@legacy-unix
86
@legacy-x
87
@misc-sl
88
@mysql-client
89
@nfs-file-server
90
@openafs-client
91
@php
92
@postgresql-client
93
@scalable-file-systems
273 beyerleu 94
# @storage-client-fcoe
269 beyerleu 95
@storage-client-iscsi
96
@storage-client-multipath
97
@system-management-snmp
273 beyerleu 98
# @system-management-messaging-client
99
# @system-management-messaging-server
100
# @system-management-wbem
101
# @turbogears
102
# @virtualization
103
# @virtualization-client
104
# @virtualization-platform
105
# @virtualization-tools
269 beyerleu 106
 
107
# Add support for your prefered language here
108
@french-support
109
@german-support
110
@russian-support
111
@chinese-support
112
@italian-support
113
@japanese-support
114
@spanish-support
115
 
116
%end
117
 
118
########################################################################
119
#
120
#  LiveCD post install 
121
#
122
########################################################################
123
 
124
%post
125
 
126
########################################################################
127
# LiveCD configuration file and LiveCD functions
128
########################################################################
129
 
130
cat > /etc/livesys.conf << 'EOF_livesysconf'
131
###--------------------------------------------------------------------
132
### Configuration file for LiveCD
133
###--------------------------------------------------------------------
134
 
273 beyerleu 135
# default LiveCD user
269 beyerleu 136
LIVECD_DEF_USER="sluser"
137
 
138
# delay in sec. before auto login
139
LOGIN_DELAY=15
140
 
273 beyerleu 141
# Services which are off (not running) on the LiveCD
142
SERVICES_OFF="mdmonitor setroubleshoot auditd crond atd readahead_early \
143
              readahead_later kdump microcode_ctl openct pcscd postfix"
144
 
275 beyerleu 145
# Services which should be on, but are not on per default
146
SERVICES_ON=""
147
 
269 beyerleu 148
EOF_livesysconf
149
 
150
 
270 beyerleu 151
cat > /etc/init.d/livesys.functions << 'EOF_livesysfunctions'
269 beyerleu 152
###--------------------------------------------------------------------
153
### livesys functions
154
###--------------------------------------------------------------------
155
 
156
# egrep_o is a replacement for "egrep -o". It prints only the last matching text
157
egrep_o() {
158
   cat | egrep "$1" | sed -r "s/.*($1).*/\\1/"
159
}
160
 
161
# boot parameter
162
cmdline_parameter() {
163
   CMDLINE=/proc/cmdline
164
   cat "$CMDLINE" | egrep_o "(^|[[:space:]]+)$1(\$|=|[[:space:]]+)" | egrep_o "$1"
165
}
166
 
167
# boot parameter value
168
cmdline_value()
169
{
170
   CMDLINE=/proc/cmdline
171
   cat "$CMDLINE" | egrep_o "(^|[[:space:]]+)$1=([^[:space:]]+)" | egrep_o "=.*" | cut -b 2- | tail -n 1
172
}
173
 
174
exists() {
175
    which $1 >/dev/null 2>&1 || return
176
    $*
177
}
178
 
179
EOF_livesysfunctions
180
 
181
 
182
 
183
########################################################################
184
# Create a sub-script so the output can be captured
185
# Must change "$" to "\$" and "`" to "\`" to avoid shell quoting
186
########################################################################
187
 
188
cat > /root/post-install << EOF_post
189
#!/bin/bash
190
 
191
 
192
echo ###################################################################
193
echo ## Creating the livesys init script - livesys
194
echo ###################################################################
195
 
196
cat > /etc/rc.d/init.d/livesys << EOF_initscript
197
#!/bin/bash
198
#
199
# live: Init script for live image
200
#
201
# chkconfig: 345 00 99
202
# description: Init script for live image.
203
 
204
. /etc/init.d/functions
205
. /etc/livesys.conf
206
. /etc/init.d/livesys.functions
207
 
275 beyerleu 208
# exit if not running from LiveCD
269 beyerleu 209
if ! strstr "\\\`cat /proc/cmdline\\\`" liveimg || [ "\\\$1" != "start" ]; then
210
    exit 0
211
fi
212
 
275 beyerleu 213
[ -e /.liveimg-configured ] && configdone=1
269 beyerleu 214
 
215
touch /.liveimg-configured
216
 
217
# read boot parameters out of /proc/cmdline
275 beyerleu 218
 
219
# hostname
273 beyerleu 220
hostname=\\\$( cmdline_value hostname )
275 beyerleu 221
 
222
# afs cell
273 beyerleu 223
CELL=\\\$( cmdline_value cell )
275 beyerleu 224
 
225
# services to turn on / off
273 beyerleu 226
SERVICEON=\\\$( cmdline_value serviceon )
227
SERVICEOFF=\\\$( cmdline_value serviceoff )
269 beyerleu 228
 
275 beyerleu 229
# cups server
230
CUPS=\\\$( cmdline_value cups )
231
 
269 beyerleu 232
# set livecd user
233
LIVECD_USER=\\\$( cmdline_value user )
234
[ ! "\\\$LIVECD_USER" ] && LIVECD_USER=\\\$LIVECD_DEF_USER
235
 
236
# mount live image
237
if [ -b \\\`readlink -f /dev/live\\\` ]; then
238
   mkdir -p /mnt/live
239
   mount -o ro /dev/live /mnt/live 2>/dev/null || mount /dev/live /mnt/live
240
fi
241
 
242
livedir="LiveOS"
243
for arg in \\\`cat /proc/cmdline\\\` ; do
244
  if [ "\\\${arg##live_dir=}" != "\\\${arg}" ]; then
245
    livedir=\\\${arg##live_dir=}
246
    return
247
  fi
248
done
249
 
250
# enable swaps unless requested otherwise
251
swaps=\\\`blkid -t TYPE=swap -o device\\\`
252
if ! strstr "\\\`cat /proc/cmdline\\\`" noswap && [ -n "\\\$swaps" ] ; then
253
  for s in \\\$swaps ; do
254
    action "Enabling swap partition \\\$s" swapon \\\$s
255
  done
256
fi
257
if ! strstr "\\\`cat /proc/cmdline\\\`" noswap && [ -f /mnt/live/\\\${livedir}/swap.img ] ; then
258
  action "Enabling swap file" swapon /mnt/live/\\\${livedir}/swap.img
259
fi
260
 
261
mountPersistentHome() {
262
  # support label/uuid
263
  if [ "\\\${homedev##LABEL=}" != "\\\${homedev}" -o "\\\${homedev##UUID=}" != "\\\${homedev}" ]; then
264
    homedev=\\\`/sbin/blkid -o device -t "\\\$homedev"\\\`
265
  fi
266
 
267
  # if we're given a file rather than a blockdev, loopback it
268
  if [ "\\\${homedev##mtd}" != "\\\${homedev}" ]; then
269
    # mtd devs don't have a block device but get magic-mounted with -t jffs2
270
    mountopts="-t jffs2"
271
  elif [ ! -b "\\\$homedev" ]; then
272
    loopdev=\\\`losetup -f\\\`
273
    if [ "\\\${homedev##/mnt/live}" != "\\\${homedev}" ]; then
274
      action "Remounting live store r/w" mount -o remount,rw /mnt/live
275
    fi
276
    losetup \\\$loopdev \\\$homedev
277
    homedev=\\\$loopdev
278
  fi
279
 
280
  # if it's encrypted, we need to unlock it
281
  if [ "\\\$(/sbin/blkid -s TYPE -o value \\\$homedev 2>/dev/null)" = "crypto_LUKS" ]; then
282
    echo
283
    echo "Setting up encrypted /home device"
284
    plymouth ask-for-password --command="cryptsetup luksOpen \\\$homedev EncHome"
285
    homedev=/dev/mapper/EncHome
286
  fi
287
 
288
  # and finally do the mount
289
  mount \\\$mountopts \\\$homedev /home
290
  # if we have /home under what's passed for persistent home, then
291
  # we should make that the real /home.  useful for mtd device on olpc
292
  if [ -d /home/home ]; then mount --bind /home/home /home ; fi
293
  [ -x /sbin/restorecon ] && /sbin/restorecon /home
294
  if [ -d /home/\\\$LIVECD_USER ]; then USERADDARGS="-M" ; fi
295
}
296
 
297
findPersistentHome() {
298
  for arg in \\\`cat /proc/cmdline\\\` ; do
299
    if [ "\\\${arg##persistenthome=}" != "\\\${arg}" ]; then
300
      homedev=\\\${arg##persistenthome=}
301
      return
302
    fi
303
  done
304
}
305
 
306
if strstr "\\\`cat /proc/cmdline\\\`" persistenthome= ; then
307
  findPersistentHome
308
elif [ -e /mnt/live/\\\${livedir}/home.img ]; then
309
  homedev=/mnt/live/\\\${livedir}/home.img
310
fi
311
 
312
# if we have a persistent /home, then we want to go ahead and mount it
313
if ! strstr "\\\`cat /proc/cmdline\\\`" nopersistenthome && [ -n "\\\$homedev" ] ; then
314
  action "Mounting persistent /home" mountPersistentHome
315
fi
316
 
317
# make it so that we don't do writing to the overlay for things which
318
# are just tmpdirs/caches
319
mount -t tmpfs -o mode=0755 varcacheyum /var/cache/yum
320
mount -t tmpfs tmp /tmp
321
mount -t tmpfs vartmp /var/tmp
322
[ -x /sbin/restorecon ] && /sbin/restorecon /var/cache/yum /tmp /var/tmp >/dev/null 2>&1
323
 
275 beyerleu 324
# set afs cell if given by boot parameter
325
if [ "\\\$CELL" ]; then
326
    [ -e /usr/vice/etc/ThisCell ] && echo \\\$CELL > /usr/vice/etc/ThisCell
327
fi
328
 
329
# set cups server
330
if [ "\\\$CUPS" ]; then
331
    if [ -e /etc/cups/client.conf ]; then
332
        sed -i "s|.*ServerName .*|ServerName  \\\$CUPS|" /etc/cups/client.conf
333
        grep -q ServerName /etc/cups/client.conf || echo "ServerName  \\\$CUPS" >> /etc/cups/client.conf 
334
    fi
335
fi
336
 
337
# set the LiveCD hostname
338
[ ! "\\\$hostname" ] && hostname="livecd.localdomain"
339
sed -i -e "s|HOSTNAME=.*|HOSTNAME=\\\$hostname|g" /etc/sysconfig/network
340
/bin/hostname \\\$hostname
341
 
342
 
343
###########################################################
344
# EXIT here if LiveCD has already been configured         #
345
# happens if you start the LiveCD with persistent changes #
346
###########################################################
347
[ "\\\$configdone" ] && exit 0
348
 
273 beyerleu 349
# turn off services, which are not useful on LiveCD, to preserve resources
274 beyerleu 350
if [ "\\\$SERVICES_OFF" ]; then
351
    for service in \\\$SERVICES_OFF ; do
273 beyerleu 352
        [ -f /etc/init.d/\\\$service ] && chkconfig \\\$service off 2>/dev/null
353
    done
354
fi
355
 
275 beyerleu 356
# turn on services, which are off by default
357
if [ "\\\$SERVICES_ON" ]; then
358
    for service in \\\$SERVICES_ON ; do
359
        [ -f /etc/init.d/\\\$service ] && chkconfig \\\$service ofn  2>/dev/null
360
    done
361
fi
362
 
363
# services off, from command line parameter (turn it off once again)
273 beyerleu 364
if [ "\\\$SERVICEOFF" ]; then
365
    for service in \\\$( echo "\\\$SERVICEOFF" | tr ':' ' ' ); do
366
        [ -f /etc/init.d/\\\$service ] && chkconfig \\\$service off 2>/dev/null
367
    done
368
fi
369
 
275 beyerleu 370
# services on, from command line parameter (turn it ofn once again)
273 beyerleu 371
if [ "\\\$SERVICEON" ]; then
372
    for service in \\\$( echo "\\\$SERVICEON" | tr ':' ' ' ); do
373
        [ -f /etc/init.d/\\\$service ] && chkconfig \\\$service on  2>/dev/null
374
    done
375
fi
376
 
269 beyerleu 377
## fix various bugs and issues
378
# unmute sound card
379
exists alsaunmute 0 2> /dev/null
380
 
270 beyerleu 381
# turn off firstboot for livecd boots
382
echo "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot
383
 
384
# start afs with option -memcache (is this correct?)
385
[ -e /etc/sysconfig/afs ] && sed -i "s|^OPTIONS=.*|OPTIONS=\"-memcache\"|" /etc/sysconfig/afs
386
 
269 beyerleu 387
# Stopgap fix for RH #217966; should be fixed in HAL instead
388
touch /media/.hal-mtab
389
 
390
## create the LiveCD default user
391
# add default user with no password
392
/usr/sbin/useradd -c "LiveCD default user" \\\$LIVECD_USER
393
/usr/bin/passwd -d \\\$LIVECD_USER > /dev/null
394
# give default user sudo privileges
395
echo "\\\$LIVECD_USER     ALL=(ALL)     NOPASSWD: ALL" >> /etc/sudoers
396
 
397
## configure default user's desktop
398
# set up timed auto-login at 10 seconds
399
cat >> /etc/gdm/custom.conf << FOE
400
[daemon]
401
TimedLoginEnable=true
402
TimedLogin=LIVECD_USER
403
TimedLoginDelay=$LOGIN_DELAY
404
FOE
405
sed -i "s|LIVECD_USER|\\\$LIVECD_USER|" /etc/gdm/custom.conf
406
 
407
# add keyboard and display configuration utilities to the desktop
408
mkdir -p /home/\\\$LIVECD_USER/Desktop >/dev/null
409
cp /usr/share/applications/gnome-keyboard.desktop           /home/\\\$LIVECD_USER/Desktop/
410
cp /usr/share/applications/gnome-display-properties.desktop /home/\\\$LIVECD_USER/Desktop/
411
 
412
# disable screensaver locking
413
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool   /apps/gnome-screensaver/lock_enabled "false" >/dev/null
414
 
415
# disable PackageKit update checking by default
416
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t int /apps/gnome-packagekit/update-icon/frequency_get_updates "0" >/dev/null
417
 
277 beyerleu 418
 
419
### detecting disk partitions and logical volumes (disabled by default)
420
### use boot parameter automount to enable it
421
 
269 beyerleu 422
CreateDesktopIconHD()
423
{
424
cat > /home/\\\$LIVECD_USER/Desktop/Local\ hard\ drives.desktop << EOF_HDicon
425
[Desktop Entry]
426
Encoding=UTF-8
427
Version=1.0
428
Type=Link
429
Name=Local hard drives
430
Name[en_US]=Local hard drives
431
Name[fr_CA]=Disques durs locaux
432
URL=/mnt/disc
433
Icon=/usr/share/icons/gnome/32x32/devices/gnome-dev-harddisk.png
434
EOF_HDicon
435
 
436
chmod 755 /home/\\\$LIVECD_USER/Desktop/Local\ hard\ drives.desktop
437
}
438
 
439
CreateDesktopIconLVM()
440
{
441
mkdir -p /home/\\\$LIVECD_USER/Desktop >/dev/null
442
 
443
cat > /home/\\\$LIVECD_USER/Desktop/Local\ logical\ volumes.desktop << EOF_LVMicon
444
[Desktop Entry]
445
Encoding=UTF-8
446
Version=1.0
447
Type=Link
448
Name=Local logical volumes
449
Name[en_US]=Local logical volumes
450
Name[fr_CA]=Volumes logiques locaux
451
URL=/mnt/lvm
452
Icon=/usr/share/icons/gnome/32x32/devices/gnome-dev-harddisk.png
453
EOF_LVMicon
454
 
455
chmod 755 /home/\\\$LIVECD_USER/Desktop/Local\ logical\ volumes.desktop
456
}
457
 
277 beyerleu 458
# mount disk partitions if 'automount' is given as a boot option
459
if [ "\\\$( cmdline_parameter automount )" ]; then
460
	MOUNTOPTION="rw"
269 beyerleu 461
	HARD_DISKS=\\\`egrep "[sh]d.\\\$" /proc/partitions | tr -s ' ' | sed 's/^  *//' | cut -d' ' -f4\\\`
462
 
463
	echo "Mounting hard disk partitions... "
464
	for DISK in \\\$HARD_DISKS; do
465
	    # Get the device and system info from fdisk (but only for fat and linux partitions).
466
	    FDISK_INFO=\\\`fdisk -l /dev/\\\$DISK | tr [A-Z] [a-z] | egrep "fat|linux" | egrep -v "swap|extended|lvm" | sed 's/*//' | tr -s ' ' | tr ' ' ':' | cut -d':' -f1,6-\\\`
467
	    for FDISK_ENTRY in \\\$FDISK_INFO; do
468
		PARTITION=\\\`echo \\\$FDISK_ENTRY | cut -d':' -f1\\\`
469
		MOUNTPOINT="/mnt/disc/\\\${PARTITION##/dev/}"
470
		mkdir -p \\\$MOUNTPOINT
471
		MOUNTED=FALSE
472
 
473
		# get the partition type
474
		case \\\`echo \\\$FDISK_ENTRY | cut -d':' -f2-\\\` in
475
		*fat*) 
476
		    FSTYPES="vfat"
477
		    EXTRAOPTIONS=",uid=500";;
478
		*)
479
		    FSTYPES="ext4 ext3 ext2"
480
		    EXTRAOPTIONS="";;
481
		esac
482
 
483
		# try to mount the partition
484
		for FSTYPE in \\\$FSTYPES; do
485
		    if mount -o "\\\${MOUNTOPTION}\\\${EXTRAOPTIONS}" -t \\\$FSTYPE \\\$PARTITION \\\$MOUNTPOINT &>/dev/null; then
486
			echo "\\\$PARTITION \\\$MOUNTPOINT \\\$FSTYPE noauto,\\\${MOUNTOPTION}\\\${EXTRAOPTIONS} 0 0" >> /etc/fstab
487
			echo -n "\\\$PARTITION "
488
			MOUNTED=TRUE
489
			CreateDesktopIconHD
490
		    fi
491
		done
492
		[ \\\$MOUNTED = "FALSE" ] && rmdir \\\$MOUNTPOINT
493
	    done
494
	done
495
	echo
496
fi
497
 
277 beyerleu 498
# mount logical volumes if 'automount' is given as a boot option
499
if [ "\\\$( cmdline_parameter automount )" ]; then
500
        MOUNTOPTION="rw"
269 beyerleu 501
	FSTYPES="ext4 ext3 ext2"
502
	echo "Scanning for logical volumes..."
503
	if ! lvm vgscan 2>&1 | grep "No volume groups"; then
504
	    echo "Activating logical volumes ..."
505
	    modprobe dm_mod >/dev/null
506
	    lvm vgchange -ay
507
	    LOGICAL_VOLUMES=\\\`lvm lvdisplay -c | sed "s/^  *//" | cut -d: -f1\\\`
508
	    if [ ! -z "\\\$LOGICAL_VOLUMES" ]; then
509
		echo "Making device nodes ..."
510
		lvm vgmknodes
511
		echo -n "Mounting logical volumes ... "
512
		for VOLUME_NAME in \\\$LOGICAL_VOLUMES; do
513
		    VG_NAME=\\\`echo \\\$VOLUME_NAME | cut -d/ -f3\\\`
514
		    LV_NAME=\\\`echo \\\$VOLUME_NAME | cut -d/ -f4\\\`
515
		    MOUNTPOINT="/mnt/lvm/\\\${VG_NAME}-\\\${LV_NAME}"
516
		    mkdir -p \\\$MOUNTPOINT
517
 
518
		    MOUNTED=FALSE
519
		    for FSTYPE in \\\$FSTYPES; do
520
			if mount -o \\\$MOUNTOPTION -t \\\$FSTYPE \\\$VOLUME_NAME \\\$MOUNTPOINT &>/dev/null; then
521
			    echo "\\\$VOLUME_NAME \\\$MOUNTPOINT \\\$FSTYPE defaults,\\\${MOUNTOPTION} 0 0" >> /etc/fstab
522
			    echo -n "\\\$VOLUME_NAME "
523
			    MOUNTED=TRUE
524
			    CreateDesktopIconLVM
525
			    break
526
			fi
527
		    done
528
		    [ \\\$MOUNTED = FALSE ] && rmdir \\\$MOUNTPOINT
529
		done
530
		echo
531
 
532
	    else
533
		echo "No logical volumes found"
534
	    fi
535
	fi
536
fi
537
 
538
# give back ownership to the default user
539
chown -R \\\$LIVECD_USER:\\\$LIVECD_USER /home/\\\$LIVECD_USER
540
 
541
EOF_initscript
542
echo ###################################################################
543
echo ## End of livesys script
544
echo ###################################################################
545
 
546
 
547
 
548
echo ###################################################################
549
echo ## Creating the livesys init script - livesys-late
550
echo ###################################################################
551
 
552
cat > /etc/rc.d/init.d/livesys-late << EOF_lateinitscript
553
#!/bin/bash
554
#
555
# live: Late init script for live image
556
#
557
# chkconfig: 345 99 01
558
# description: Late init script for live image.
559
 
560
. /etc/init.d/functions
561
. /etc/livesys.conf
562
. /etc/init.d/livesys.functions
563
 
275 beyerleu 564
# exit if not running from LiveCD
565
if ! strstr "\\\`cat /proc/cmdline\\\`" liveimg || [ "\\\$1" != "start" ]; then
269 beyerleu 566
    exit 0
567
fi
568
 
569
touch /.liveimg-late-configured
570
 
571
# read boot parameters out of /proc/cmdline
572
ks=\\\$( cmdline_value ks )
573
xdriver=\\\$( cmdline_value xdriver )
574
kb=\\\$( cmdline_value kb )
575
 
576
# if liveinst or textinst is given, start anaconda
577
if [ "\\\$( cmdline_parameter liveinst )" ]; then
578
   plymouth --quit
579
   /usr/sbin/liveinst \\\$ks
580
fi
581
if [ "\\\$( cmdline_parameter textinst )" ] ; then
582
   plymouth --quit
583
   /usr/sbin/liveinst --text \\\$ks
584
fi
585
 
586
# configure X, allowing user to override xdriver
587
if [ "\\\$xdriver" ]; then
588
    exists system-config-display --noui --reconfig --set-depth=24 --set-driver=\\\$xdriver
589
fi
590
 
591
# configure keyboard
592
if [ "\\\$kb" ]; then
593
    exists system-config-keyboard --noui \\\$kb 
594
fi
595
 
596
EOF_lateinitscript
597
echo ###################################################################
598
echo ## End of livesys-late script
599
echo ###################################################################
600
 
601
 
602
 
603
echo ###################################################################
604
echo ## Configure the LiveCD
605
echo ###################################################################
606
 
607
# workaround avahi segfault (#279301)
608
touch /etc/resolv.conf
609
/sbin/restorecon /etc/resolv.conf
610
 
611
chmod 755 /etc/rc.d/init.d/livesys
612
/sbin/restorecon /etc/rc.d/init.d/livesys
613
/sbin/chkconfig --add livesys
614
 
615
chmod 755 /etc/rc.d/init.d/livesys-late
616
/sbin/restorecon /etc/rc.d/init.d/livesys-late
617
/sbin/chkconfig --add livesys-late
618
 
619
# go ahead and pre-make the man -k cache (#455968)
620
/usr/sbin/makewhatis -w
621
 
622
# save a little bit of space at least...
623
rm -f /var/lib/rpm/__db*
624
rm -f /boot/initrd*
625
rm -f /boot/initramfs*
626
# make sure there aren't core files lying around
627
rm -f /core*
628
 
629
# convince readahead not to collect
630
rm -f /.readahead_collect
631
touch /var/lib/readahead/early.sorted
632
 
633
# workaround clock syncing on shutdown that we don't want (#297421)
634
sed -i -e 's/hwclock/no-such-hwclock/g' /etc/rc.d/init.d/halt
635
 
636
# import RPM GPG keys
637
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-beta
638
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
639
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-sl6
640
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-dawson
641
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-sl
642
 
643
# evolution is in the gnome launch panel (workaround to start thunderbird instead)
644
[ ! -e /usr/bin/evolution ] && ln -s /usr/bin/thunderbird /usr/bin/evolution
645
 
646
EOF_post
647
 
648
# run post-install script
649
/bin/bash -x /root/post-install 2>&1 | tee /root/post-install.log
650
 
651
%end
652
########################################################################
653
# End of configure LiveCD in chroot
654
########################################################################
655
 
656
 
657
 
658
%post --nochroot
659
########################################################################
660
# Post install in no chroot
661
# Must change "$" to "\$" and "`" to "\`" to avoid shell quoting
662
########################################################################
663
cat > /root/postnochroot-install << EOF_postnochroot
664
#!/bin/bash
665
 
666
# Copy licensing information
667
cp $INSTALL_ROOT/usr/share/doc/*-release-*/GPL $LIVE_ROOT/GPL
668
 
669
# add livecd-iso-to-disk utility on the LiveCD
670
# only works on x86, x86_64
671
if [ "\$(uname -i)" = "i386" -o "\$(uname -i)" = "x86_64" ]; then
672
  if [ ! -d \$LIVE_ROOT/LiveOS ]; then mkdir -p \$LIVE_ROOT/LiveOS ; fi
673
  cp /usr/bin/livecd-iso-to-disk \$LIVE_ROOT/LiveOS
674
fi
675
 
676
# customize boot menu entries
677
grep -B4 'menu default'  \$LIVE_ROOT/isolinux/isolinux.cfg > \$LIVE_ROOT/isolinux/default.txt
678
grep -B3 'xdriver=vesa'  \$LIVE_ROOT/isolinux/isolinux.cfg > \$LIVE_ROOT/isolinux/basicvideo.txt
679
grep -A3 'label check0'  \$LIVE_ROOT/isolinux/isolinux.cfg > \$LIVE_ROOT/isolinux/check.txt
680
grep -A2 'label memtest' \$LIVE_ROOT/isolinux/isolinux.cfg > \$LIVE_ROOT/isolinux/memtest.txt
681
grep -A2 'label local'   \$LIVE_ROOT/isolinux/isolinux.cfg > \$LIVE_ROOT/isolinux/localboot.txt
682
 
683
sed "s/label linux0/label linuxtext0/"   \$LIVE_ROOT/isolinux/default.txt > \$LIVE_ROOT/isolinux/textboot.txt
684
sed -i "s/Boot/Boot (Text Mode)/"                                           \$LIVE_ROOT/isolinux/textboot.txt
685
sed -i "s/liveimg/liveimg 3/"                                               \$LIVE_ROOT/isolinux/textboot.txt
686
sed -i "/menu default/d"                                                    \$LIVE_ROOT/isolinux/textboot.txt
687
 
688
sed "s/label linux0/label install0/"     \$LIVE_ROOT/isolinux/default.txt > \$LIVE_ROOT/isolinux/install.txt
689
sed -i "s/Boot/Install/"                                                    \$LIVE_ROOT/isolinux/install.txt
277 beyerleu 690
sed -i "s/liveimg/liveimg liveinst noswap/"                                 \$LIVE_ROOT/isolinux/install.txt
269 beyerleu 691
sed -i "s/ quiet / /"                                                       \$LIVE_ROOT/isolinux/install.txt
692
sed -i "s/ rhgb / /"                                                        \$LIVE_ROOT/isolinux/install.txt
693
sed -i "/menu default/d"                                                    \$LIVE_ROOT/isolinux/install.txt
694
 
695
sed "s/label linux0/label textinstall0/" \$LIVE_ROOT/isolinux/default.txt > \$LIVE_ROOT/isolinux/textinstall.txt
696
sed -i "s/Boot/Install (Text Mode)/"                                        \$LIVE_ROOT/isolinux/textinstall.txt
277 beyerleu 697
sed -i "s/liveimg/liveimg textinst noswap/"                                 \$LIVE_ROOT/isolinux/textinstall.txt
269 beyerleu 698
sed -i "s/ quiet / /"                                                       \$LIVE_ROOT/isolinux/textinstall.txt
699
sed -i "s/ rhgb / /"                                                        \$LIVE_ROOT/isolinux/textinstall.txt
700
sed -i "/menu default/d"                                                    \$LIVE_ROOT/isolinux/textinstall.txt
701
 
702
cat \$LIVE_ROOT/isolinux/default.txt \$LIVE_ROOT/isolinux/basicvideo.txt \$LIVE_ROOT/isolinux/check.txt \$LIVE_ROOT/isolinux/memtest.txt \$LIVE_ROOT/isolinux/localboot.txt > \$LIVE_ROOT/isolinux/current.txt
703
diff \$LIVE_ROOT/isolinux/isolinux.cfg \$LIVE_ROOT/isolinux/current.txt | sed '/^[0-9][0-9]*/d; s/^. //; /^---$/d' > \$LIVE_ROOT/isolinux/cleaned.txt
704
cat \$LIVE_ROOT/isolinux/cleaned.txt \$LIVE_ROOT/isolinux/default.txt \$LIVE_ROOT/isolinux/textboot.txt \$LIVE_ROOT/isolinux/basicvideo.txt \$LIVE_ROOT/isolinux/install.txt \$LIVE_ROOT/isolinux/textinstall.txt \$LIVE_ROOT/isolinux/memtest.txt \$LIVE_ROOT/isolinux/localboot.txt > \$LIVE_ROOT/isolinux/isolinux.cfg
705
rm -f \$LIVE_ROOT/isolinux/*.txt
706
 
707
EOF_postnochroot
708
 
709
# run postnochroot-install script
710
/bin/bash -x /root/postnochroot-install 2>&1 | tee /root/postnochroot-install.log
711
 
712
%end
713
########################################################################
714
# End of configure LiveCD in nochroot
715
########################################################################