Subversion Repositories livecd

Rev

Rev 410 | Rev 439 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
393 beyerleu 1
 
2
lang en_GB.UTF-8
3
keyboard us
4
timezone Europe/Brussels --isUtc
5
auth --useshadow --enablemd5
6
selinux --enforcing
7
firewall --enabled --service=mdns
8
xconfig --startxonboot
412 beyerleu 9
part / --size 10240 --fstype ext4
393 beyerleu 10
services --enabled=NetworkManager --disabled=network,sshd
11
 
12
 
13
# Root password
14
rootpw --iscrypted $6$K2nKf02kVKG68960$OywvoaViphSITuro/liKvCj7Pm/CH/xqzz/lsoXyaKSR1lYf0vHAqSUc483a9MCCBkIwfr/hNMfqwxqVO0OEg1
15
 
400 beyerleu 16
# Workaround for the grubby issue on live media (see https://bugzilla.redhat.com/show_bug.cgi?id=1153410)
393 beyerleu 17
# SL repositories (fastbugs enabled per default) 
400 beyerleu 18
repo --name=base      --baseurl=http://ftp.scientificlinux.org/linux/scientific/7rolling/$basearch/os/               --excludepkgs=grubby
19
repo --name=security  --baseurl=http://ftp.scientificlinux.org/linux/scientific/7rolling/$basearch/updates/security/ --excludepkgs=grubby
20
repo --name=fastbugs  --baseurl=http://ftp.scientificlinux.org/linux/scientific/7rolling/$basearch/updates/fastbugs/ --excludepkgs=grubby
21
repo --name=grubby    --baseurl=http://ftp.scientificlinux.org/linux/scientific/7.0/$basearch/os/                    --includepkgs=grubby
393 beyerleu 22
 
23
# or use a mirror close to you
400 beyerleu 24
#repo --name=base      --baseurl=http://mirror.switch.ch/ftp/mirror/scientificlinux/7rolling/$basearch/os/               --excludepkgs=grubby
25
#repo --name=security  --baseurl=http://mirror.switch.ch/ftp/mirror/scientificlinux/7rolling/$basearch/updates/security/ --excludepkgs=grubby
26
#repo --name=fastbugs  --baseurl=http://mirror.switch.ch/ftp/mirror/scientificlinux/7rolling/$basearch/updates/fastbugs/ --excludepkgs=grubby
27
#repo --name=grubby    --baseurl=http://ftp.scientificlinux.org/linux/scientific/7.0/$basearch/os/                       --includepkgs=grubby
393 beyerleu 28
 
29
 
30
%packages
31
@base
32
@core
33
@dial-up
34
@directory-client
35
@fonts
36
@gnome-desktop
37
@guest-agents
38
@guest-desktop-agents
39
@input-methods
40
@internet-browser
41
@java-platform
42
@multimedia
43
@network-file-system-client
44
@print-client
45
@x11
46
@internet-applications
47
@office-suite
402 beyerleu 48
#@remote-desktop-clients
393 beyerleu 49
@gnome-apps
50
 
51
# additional packages
52
@backup-client
53
@compat-libraries
54
@development
55
@emacs
56
@graphics
57
@legacy-x
58
@network-tools
59
@performance
60
@perl-runtime
61
@php
62
@technical-writing
63
 
64
# console-internet
65
lftp
66
mutt
67
whois
68
 
69
# legacy-unix
70
finger
71
ksh
72
telnet
73
 
74
# network-tools
75
nmap
76
wireshark
77
wireshark-gnome
78
iptraf-ng
79
netsniff-ng
80
 
81
# scientific
82
atlas
83
fftw
84
gnuplot
85
lapack
86
numpy
87
scipy
88
units
89
 
90
# system-admin-tools
91
screen
92
system-storage-manager
93
tree
94
mc
95
 
96
# development
395 beyerleu 97
java-1.7.0-openjdk-devel
393 beyerleu 98
 
99
# live install tools
100
anaconda
101
system-config-keyboard
102
firefox
400 beyerleu 103
patch
393 beyerleu 104
 
105
# for UEFI/Secureboot support
106
grub2
107
grub2-efi
108
efibootmgr
109
shim
110
 
111
%end
112
 
113
%post
114
# FIXME: it'd be better to get this installed from a package
115
cat > /etc/rc.d/init.d/livesys << EOF
116
#!/bin/bash
117
#
118
# live: Init script for live image
119
#
120
# chkconfig: 345 00 99
121
# description: Init script for live image.
122
### BEGIN INIT INFO
123
# X-Start-Before: display-manager
124
### END INIT INFO
125
 
126
. /etc/init.d/functions
127
 
128
if ! strstr "\`cat /proc/cmdline\`" rd.live.image || [ "\$1" != "start" ]; then
129
    exit 0
130
fi
131
 
132
if [ -e /.liveimg-configured ] ; then
133
    configdone=1
134
fi
135
 
136
exists() {
137
    which \$1 >/dev/null 2>&1 || return
138
    \$*
139
}
140
 
141
# Make sure we don't mangle the hardware clock on shutdown
142
ln -sf /dev/null /etc/systemd/system/hwclock-save.service
143
 
144
livedir="LiveOS"
145
for arg in \`cat /proc/cmdline\` ; do
146
  if [ "\${arg##rd.live.dir=}" != "\${arg}" ]; then
147
    livedir=\${arg##rd.live.dir=}
148
    return
149
  fi
150
  if [ "\${arg##live_dir=}" != "\${arg}" ]; then
151
    livedir=\${arg##live_dir=}
152
    return
153
  fi
154
done
155
 
156
# enable swaps unless requested otherwise
157
swaps=\`blkid -t TYPE=swap -o device\`
158
if ! strstr "\`cat /proc/cmdline\`" noswap && [ -n "\$swaps" ] ; then
159
  for s in \$swaps ; do
160
    action "Enabling swap partition \$s" swapon \$s
161
  done
162
fi
163
if ! strstr "\`cat /proc/cmdline\`" noswap && [ -f /run/initramfs/live/\${livedir}/swap.img ] ; then
164
  action "Enabling swap file" swapon /run/initramfs/live/\${livedir}/swap.img
165
fi
166
 
167
mountPersistentHome() {
168
  # support label/uuid
169
  if [ "\${homedev##LABEL=}" != "\${homedev}" -o "\${homedev##UUID=}" != "\${homedev}" ]; then
170
    homedev=\`/sbin/blkid -o device -t "\$homedev"\`
171
  fi
172
 
173
  # if we're given a file rather than a blockdev, loopback it
174
  if [ "\${homedev##mtd}" != "\${homedev}" ]; then
175
    # mtd devs don't have a block device but get magic-mounted with -t jffs2
176
    mountopts="-t jffs2"
177
  elif [ ! -b "\$homedev" ]; then
178
    loopdev=\`losetup -f\`
179
    if [ "\${homedev##/run/initramfs/live}" != "\${homedev}" ]; then
180
      action "Remounting live store r/w" mount -o remount,rw /run/initramfs/live
181
    fi
182
    losetup \$loopdev \$homedev
183
    homedev=\$loopdev
184
  fi
185
 
186
  # if it's encrypted, we need to unlock it
187
  if [ "\$(/sbin/blkid -s TYPE -o value \$homedev 2>/dev/null)" = "crypto_LUKS" ]; then
188
    echo
189
    echo "Setting up encrypted /home device"
190
    plymouth ask-for-password --command="cryptsetup luksOpen \$homedev EncHome"
191
    homedev=/dev/mapper/EncHome
192
  fi
193
 
194
  # and finally do the mount
195
  mount \$mountopts \$homedev /home
196
  # if we have /home under what's passed for persistent home, then
197
  # we should make that the real /home.  useful for mtd device on olpc
198
  if [ -d /home/home ]; then mount --bind /home/home /home ; fi
199
  [ -x /sbin/restorecon ] && /sbin/restorecon /home
200
  if [ -d /home/liveuser ]; then USERADDARGS="-M" ; fi
201
}
202
 
203
findPersistentHome() {
204
  for arg in \`cat /proc/cmdline\` ; do
205
    if [ "\${arg##persistenthome=}" != "\${arg}" ]; then
206
      homedev=\${arg##persistenthome=}
207
      return
208
    fi
209
  done
210
}
211
 
212
if strstr "\`cat /proc/cmdline\`" persistenthome= ; then
213
  findPersistentHome
214
elif [ -e /run/initramfs/live/\${livedir}/home.img ]; then
215
  homedev=/run/initramfs/live/\${livedir}/home.img
216
fi
217
 
218
# if we have a persistent /home, then we want to go ahead and mount it
219
if ! strstr "\`cat /proc/cmdline\`" nopersistenthome && [ -n "\$homedev" ] ; then
220
  action "Mounting persistent /home" mountPersistentHome
221
fi
222
 
223
# make it so that we don't do writing to the overlay for things which
224
# are just tmpdirs/caches
225
mount -t tmpfs -o mode=0755 varcacheyum /var/cache/yum
226
mount -t tmpfs vartmp /var/tmp
227
[ -x /sbin/restorecon ] && /sbin/restorecon /var/cache/yum /var/tmp >/dev/null 2>&1
228
 
229
if [ -n "\$configdone" ]; then
230
  exit 0
231
fi
232
 
233
# add live user with no passwd
234
action "Adding live user" useradd \$USERADDARGS -c "Live System User" liveuser
235
passwd -d liveuser > /dev/null
236
usermod -aG wheel liveuser > /dev/null
237
 
238
# Remove root password lock
239
passwd -d root > /dev/null
240
 
241
# turn off firstboot for livecd boots
242
systemctl --no-reload disable firstboot-text.service 2> /dev/null || :
243
systemctl --no-reload disable firstboot-graphical.service 2> /dev/null || :
244
systemctl stop firstboot-text.service 2> /dev/null || :
245
systemctl stop firstboot-graphical.service 2> /dev/null || :
246
 
247
# don't use prelink on a running live image
248
sed -i 's/PRELINKING=yes/PRELINKING=no/' /etc/sysconfig/prelink &>/dev/null || :
249
 
250
# turn off mdmonitor by default
251
systemctl --no-reload disable mdmonitor.service 2> /dev/null || :
252
systemctl --no-reload disable mdmonitor-takeover.service 2> /dev/null || :
253
systemctl stop mdmonitor.service 2> /dev/null || :
254
systemctl stop mdmonitor-takeover.service 2> /dev/null || :
255
 
256
# don't enable the gnome-settings-daemon packagekit plugin
402 beyerleu 257
echo -e "\ngsettings set org.gnome.settings-daemon.plugins.updates active 'false' &>/dev/null || :" >> /home/liveuser/.bashrc
393 beyerleu 258
 
259
# don't start cron/at as they tend to spawn things which are
260
# disk intensive that are painful on a live image
261
systemctl --no-reload disable crond.service 2> /dev/null || :
262
systemctl --no-reload disable atd.service 2> /dev/null || :
263
systemctl stop crond.service 2> /dev/null || :
264
systemctl stop atd.service 2> /dev/null || :
265
 
396 beyerleu 266
# disable kdump service
267
systemctl --no-reload disable kdump.service 2> /dev/null || :
268
systemctl stop kdump.service 2> /dev/null || :
269
 
393 beyerleu 270
# Mark things as configured
271
touch /.liveimg-configured
272
 
273
# add static hostname to work around xauth bug
274
# https://bugzilla.redhat.com/show_bug.cgi?id=679486
275
echo "localhost" > /etc/hostname
276
 
277
# Fixing the lang install issue when other lang than English is selected . See http://bugs.centos.org/view.php?id=7217
278
/usr/bin/cp /usr/lib/python2.7/site-packages/blivet/size.py /usr/lib/python2.7/site-packages/blivet/size.py.orig
279
/usr/bin/sed -i "s#return self.humanReadable()#return self.humanReadable().encode('utf-8')#g" /usr/lib/python2.7/site-packages/blivet/size.py
280
 
281
EOF
282
 
283
# bah, hal starts way too late
284
cat > /etc/rc.d/init.d/livesys-late << EOF
285
#!/bin/bash
286
#
287
# live: Late init script for live image
288
#
289
# chkconfig: 345 99 01
290
# description: Late init script for live image.
291
 
292
. /etc/init.d/functions
293
 
294
if ! strstr "\`cat /proc/cmdline\`" rd.live.image || [ "\$1" != "start" ] || [ -e /.liveimg-late-configured ] ; then
295
    exit 0
296
fi
297
 
298
exists() {
299
    which \$1 >/dev/null 2>&1 || return
300
    \$*
301
}
302
 
303
touch /.liveimg-late-configured
304
 
305
# read some variables out of /proc/cmdline
306
for o in \`cat /proc/cmdline\` ; do
307
    case \$o in
308
    ks=*)
309
        ks="--kickstart=\${o#ks=}"
310
        ;;
311
    xdriver=*)
312
        xdriver="\${o#xdriver=}"
313
        ;;
314
    esac
315
done
316
 
317
# if liveinst or textinst is given, start anaconda
318
if strstr "\`cat /proc/cmdline\`" liveinst ; then
319
   plymouth --quit
320
   /usr/sbin/liveinst \$ks
321
fi
322
if strstr "\`cat /proc/cmdline\`" textinst ; then
323
   plymouth --quit
324
   /usr/sbin/liveinst --text \$ks
325
fi
326
 
327
# configure X, allowing user to override xdriver
328
if [ -n "\$xdriver" ]; then
329
   cat > /etc/X11/xorg.conf.d/00-xdriver.conf <<FOE
330
Section "Device"
331
	Identifier	"Videocard0"
332
	Driver	"\$xdriver"
333
EndSection
334
FOE
335
fi
336
 
337
EOF
338
 
339
chmod 755 /etc/rc.d/init.d/livesys
340
/sbin/restorecon /etc/rc.d/init.d/livesys
341
/sbin/chkconfig --add livesys
342
 
343
chmod 755 /etc/rc.d/init.d/livesys-late
344
/sbin/restorecon /etc/rc.d/init.d/livesys-late
345
/sbin/chkconfig --add livesys-late
346
 
347
# enable tmpfs for /tmp
348
systemctl enable tmp.mount
349
 
350
# work around for poor key import UI in PackageKit
351
rm -f /var/lib/rpm/__db*
352
releasever=$(rpm -q --qf '%{version}\n' --whatprovides system-release)
353
basearch=$(uname -i)
354
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-*
355
echo "Packages within this LiveCD (with version)"
356
rpm -qa | sort
357
echo "Packages within this LiveCD"
358
rpm -qa --qf "%{name}\n" | sort
359
# Note that running rpm recreates the rpm db files which aren't needed or wanted
360
rm -f /var/lib/rpm/__db*
361
 
362
# go ahead and pre-make the man -k cache (#455968)
363
/usr/bin/mandb
364
 
365
# save a little bit of space at least...
366
rm -f /boot/initramfs*
367
# make sure there aren't core files lying around
368
rm -f /core*
369
 
370
# convince readahead not to collect
371
# FIXME: for systemd
372
 
373
cat >> /etc/rc.d/init.d/livesys << EOF
374
 
375
 
376
# disable updates plugin
377
cat >> /usr/share/glib-2.0/schemas/org.gnome.settings-daemon.plugins.updates.gschema.override << FOE
378
[org.gnome.settings-daemon.plugins.updates]
379
active=false
380
FOE
381
 
382
# Show the system-config-keyboard tool on the desktop
383
mkdir /home/liveuser/Desktop -p >/dev/null
384
cat /usr/share/applications/system-config-keyboard.desktop | sed '/NotShowIn/d' |sed 's/Terminal=false/Terminal=true/' > /home/liveuser/Desktop/system-config-keyboard.desktop
385
cat /usr/share/applications/liveinst.desktop | sed '/NoDisplay/d' > /home/liveuser/Desktop/liveinst.desktop 
386
chmod +x /home/liveuser/Desktop/*.desktop
387
chown -R liveuser:liveuser /home/liveuser
388
 
389
# Liveuser face
390
if [ -e /usr/share/icons/hicolor/96x96/apps/fedora-logo-icon.png ] ; then
391
    cp /usr/share/icons/hicolor/96x96/apps/fedora-logo-icon.png /home/liveuser/.face
392
    chown liveuser:liveuser /home/liveuser/.face
393
fi
394
 
395
# make the installer show up
396
if [ -f /usr/share/applications/liveinst.desktop ]; then
397
  # Show harddisk install in shell dash
398
  sed -i -e 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop 
399
  # need to move it to anaconda.desktop to make shell happy
400
  #cp /usr/share/applications/liveinst.desktop /usr/share/applications/anaconda.desktop
401
fi
402
  cat >> /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override << FOE
403
[org.gnome.shell]
404
favorite-apps=['liveinst.desktop','firefox.desktop', 'evolution.desktop', 'empathy.desktop', 'rhythmbox.desktop', 'shotwell.desktop', 'libreoffice-writer.desktop', 'nautilus.desktop', 'gnome-documents.desktop', 'anaconda.desktop']
405
FOE
406
 
407
 
408
# set up auto-login
409
cat > /etc/gdm/custom.conf << FOE
410
[daemon]
411
AutomaticLoginEnable=True
412
AutomaticLogin=liveuser
413
FOE
414
 
415
# Turn off PackageKit-command-not-found while uninstalled
416
if [ -f /etc/PackageKit/CommandNotFound.conf ]; then
417
  sed -i -e 's/^SoftwareSourceSearch=true/SoftwareSourceSearch=false/' /etc/PackageKit/CommandNotFound.conf
418
fi
419
 
420
# make sure to set the right permissions and selinux contexts
421
chown -R liveuser:liveuser /home/liveuser/
422
restorecon -R /home/liveuser/
423
 
400 beyerleu 424
# Fixing default locale to us - does not work for SL7.1
397 beyerleu 425
#localectl set-keymap us
426
#localectl set-x11-keymap us
393 beyerleu 427
EOF
428
 
429
# rebuild schema cache with any overrides we installed
430
glib-compile-schemas /usr/share/glib-2.0/schemas
431
 
432
 
433
%end