2008-04-13 15:24:59 +00:00
|
|
|
# fedora-live-base.ks
|
|
|
|
#
|
|
|
|
# Defines the basics for all kickstarts in the fedora-live branch
|
|
|
|
# Does not include package selection (other then mandatory)
|
|
|
|
# Does not include localization packages or configuration
|
2008-05-01 14:30:50 +00:00
|
|
|
#
|
2008-04-23 23:29:55 +00:00
|
|
|
# Does includes "default" language configuration (kickstarts including
|
2008-04-13 15:24:59 +00:00
|
|
|
# this template can override these settings)
|
|
|
|
|
|
|
|
lang en_US.UTF-8
|
|
|
|
keyboard us
|
|
|
|
timezone US/Eastern
|
2015-06-21 16:38:20 +00:00
|
|
|
auth --useshadow --passalgo=sha512
|
2008-04-13 15:24:59 +00:00
|
|
|
selinux --enforcing
|
2009-12-14 12:07:43 +00:00
|
|
|
firewall --enabled --service=mdns
|
2008-04-13 15:24:59 +00:00
|
|
|
xconfig --startxonboot
|
2015-02-19 02:16:17 +00:00
|
|
|
part / --size 4096 --fstype ext4
|
2008-04-13 15:24:59 +00:00
|
|
|
services --enabled=NetworkManager --disabled=network,sshd
|
|
|
|
|
2013-06-29 13:05:30 +00:00
|
|
|
%include fedora-repo.ks
|
2008-04-13 15:24:59 +00:00
|
|
|
|
|
|
|
%packages
|
|
|
|
@base-x
|
2013-05-20 20:58:02 +00:00
|
|
|
@guest-desktop-agents
|
2012-09-01 17:00:10 +00:00
|
|
|
@standard
|
2008-04-13 15:24:59 +00:00
|
|
|
@core
|
2008-08-11 14:50:41 +00:00
|
|
|
@fonts
|
2008-10-27 07:39:09 +00:00
|
|
|
@input-methods
|
2008-04-13 15:24:59 +00:00
|
|
|
@dial-up
|
2012-09-07 19:37:13 +00:00
|
|
|
@multimedia
|
2008-04-13 15:24:59 +00:00
|
|
|
@hardware-support
|
|
|
|
@printing
|
|
|
|
|
2010-03-23 13:14:04 +00:00
|
|
|
# Explicitly specified here:
|
|
|
|
# <notting> walters: because otherwise dependency loops cause yum issues.
|
|
|
|
kernel
|
2008-04-13 15:24:59 +00:00
|
|
|
|
2010-03-23 13:14:04 +00:00
|
|
|
# This was added a while ago, I think it falls into the category of
|
|
|
|
# "Diagnosis/recovery tool useful from a Live OS image". Leaving this untouched
|
|
|
|
# for now.
|
|
|
|
memtest86+
|
2008-04-13 15:24:59 +00:00
|
|
|
|
2010-03-24 21:41:41 +00:00
|
|
|
# The point of a live image is to install
|
|
|
|
anaconda
|
2012-09-07 19:37:13 +00:00
|
|
|
@anaconda-tools
|
2010-03-24 21:41:41 +00:00
|
|
|
|
2014-09-19 18:06:36 +00:00
|
|
|
# Need aajohan-comfortaa-fonts for the SVG rnotes images
|
|
|
|
aajohan-comfortaa-fonts
|
|
|
|
|
2015-07-13 17:06:01 +00:00
|
|
|
# Without this, initramfs generation during live image creation fails: #1242586
|
|
|
|
dracut-live
|
|
|
|
|
2008-04-13 15:24:59 +00:00
|
|
|
%end
|
|
|
|
|
|
|
|
%post
|
|
|
|
# FIXME: it'd be better to get this installed from a package
|
2008-10-02 15:05:16 +00:00
|
|
|
cat > /etc/rc.d/init.d/livesys << EOF
|
2008-04-13 15:24:59 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# live: Init script for live image
|
|
|
|
#
|
|
|
|
# chkconfig: 345 00 99
|
|
|
|
# description: Init script for live image.
|
2013-02-13 15:37:36 +00:00
|
|
|
### BEGIN INIT INFO
|
|
|
|
# X-Start-Before: display-manager
|
|
|
|
### END INIT INFO
|
2008-04-13 15:24:59 +00:00
|
|
|
|
|
|
|
. /etc/init.d/functions
|
|
|
|
|
2012-07-31 20:12:37 +00:00
|
|
|
if ! strstr "\`cat /proc/cmdline\`" rd.live.image || [ "\$1" != "start" ]; then
|
2008-04-13 15:24:59 +00:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2008-11-06 18:32:52 +00:00
|
|
|
if [ -e /.liveimg-configured ] ; then
|
|
|
|
configdone=1
|
|
|
|
fi
|
|
|
|
|
2008-04-13 15:24:59 +00:00
|
|
|
exists() {
|
|
|
|
which \$1 >/dev/null 2>&1 || return
|
|
|
|
\$*
|
|
|
|
}
|
|
|
|
|
2009-03-06 21:54:17 +00:00
|
|
|
livedir="LiveOS"
|
|
|
|
for arg in \`cat /proc/cmdline\` ; do
|
2012-12-11 19:28:03 +00:00
|
|
|
if [ "\${arg##rd.live.dir=}" != "\${arg}" ]; then
|
|
|
|
livedir=\${arg##rd.live.dir=}
|
|
|
|
return
|
|
|
|
fi
|
2009-03-06 21:54:17 +00:00
|
|
|
if [ "\${arg##live_dir=}" != "\${arg}" ]; then
|
|
|
|
livedir=\${arg##live_dir=}
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2008-04-13 15:24:59 +00:00
|
|
|
# enable swaps unless requested otherwise
|
|
|
|
swaps=\`blkid -t TYPE=swap -o device\`
|
2008-06-06 09:00:03 +00:00
|
|
|
if ! strstr "\`cat /proc/cmdline\`" noswap && [ -n "\$swaps" ] ; then
|
2008-04-13 15:24:59 +00:00
|
|
|
for s in \$swaps ; do
|
|
|
|
action "Enabling swap partition \$s" swapon \$s
|
|
|
|
done
|
2008-10-17 02:08:41 +00:00
|
|
|
fi
|
2012-05-08 19:37:27 +00:00
|
|
|
if ! strstr "\`cat /proc/cmdline\`" noswap && [ -f /run/initramfs/live/\${livedir}/swap.img ] ; then
|
|
|
|
action "Enabling swap file" swapon /run/initramfs/live/\${livedir}/swap.img
|
2008-04-13 15:24:59 +00:00
|
|
|
fi
|
|
|
|
|
2008-06-06 09:00:03 +00:00
|
|
|
mountPersistentHome() {
|
|
|
|
# support label/uuid
|
|
|
|
if [ "\${homedev##LABEL=}" != "\${homedev}" -o "\${homedev##UUID=}" != "\${homedev}" ]; then
|
|
|
|
homedev=\`/sbin/blkid -o device -t "\$homedev"\`
|
|
|
|
fi
|
|
|
|
|
|
|
|
# if we're given a file rather than a blockdev, loopback it
|
2008-10-03 02:17:09 +00:00
|
|
|
if [ "\${homedev##mtd}" != "\${homedev}" ]; then
|
|
|
|
# mtd devs don't have a block device but get magic-mounted with -t jffs2
|
|
|
|
mountopts="-t jffs2"
|
|
|
|
elif [ ! -b "\$homedev" ]; then
|
2008-06-06 09:00:03 +00:00
|
|
|
loopdev=\`losetup -f\`
|
2012-05-08 19:37:27 +00:00
|
|
|
if [ "\${homedev##/run/initramfs/live}" != "\${homedev}" ]; then
|
2012-05-08 19:11:15 +00:00
|
|
|
action "Remounting live store r/w" mount -o remount,rw /run/initramfs/live
|
2008-06-06 09:00:03 +00:00
|
|
|
fi
|
|
|
|
losetup \$loopdev \$homedev
|
|
|
|
homedev=\$loopdev
|
|
|
|
fi
|
|
|
|
|
|
|
|
# if it's encrypted, we need to unlock it
|
2009-06-17 15:38:35 +00:00
|
|
|
if [ "\$(/sbin/blkid -s TYPE -o value \$homedev 2>/dev/null)" = "crypto_LUKS" ]; then
|
2008-06-06 09:00:03 +00:00
|
|
|
echo
|
|
|
|
echo "Setting up encrypted /home device"
|
2008-08-11 14:51:55 +00:00
|
|
|
plymouth ask-for-password --command="cryptsetup luksOpen \$homedev EncHome"
|
2008-06-06 09:00:03 +00:00
|
|
|
homedev=/dev/mapper/EncHome
|
|
|
|
fi
|
|
|
|
|
|
|
|
# and finally do the mount
|
2008-10-03 02:17:09 +00:00
|
|
|
mount \$mountopts \$homedev /home
|
|
|
|
# if we have /home under what's passed for persistent home, then
|
|
|
|
# we should make that the real /home. useful for mtd device on olpc
|
|
|
|
if [ -d /home/home ]; then mount --bind /home/home /home ; fi
|
2008-06-06 09:00:03 +00:00
|
|
|
[ -x /sbin/restorecon ] && /sbin/restorecon /home
|
2008-10-02 15:05:16 +00:00
|
|
|
if [ -d /home/liveuser ]; then USERADDARGS="-M" ; fi
|
2008-06-06 09:00:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
findPersistentHome() {
|
2008-08-28 10:19:50 +00:00
|
|
|
for arg in \`cat /proc/cmdline\` ; do
|
2008-06-06 09:00:03 +00:00
|
|
|
if [ "\${arg##persistenthome=}" != "\${arg}" ]; then
|
|
|
|
homedev=\${arg##persistenthome=}
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
if strstr "\`cat /proc/cmdline\`" persistenthome= ; then
|
|
|
|
findPersistentHome
|
2012-05-08 19:37:27 +00:00
|
|
|
elif [ -e /run/initramfs/live/\${livedir}/home.img ]; then
|
|
|
|
homedev=/run/initramfs/live/\${livedir}/home.img
|
2008-06-06 09:00:03 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# if we have a persistent /home, then we want to go ahead and mount it
|
|
|
|
if ! strstr "\`cat /proc/cmdline\`" nopersistenthome && [ -n "\$homedev" ] ; then
|
|
|
|
action "Mounting persistent /home" mountPersistentHome
|
|
|
|
fi
|
|
|
|
|
2008-11-06 18:32:52 +00:00
|
|
|
if [ -n "\$configdone" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2008-04-13 15:24:59 +00:00
|
|
|
# add fedora user with no passwd
|
2008-10-02 15:05:16 +00:00
|
|
|
action "Adding live user" useradd \$USERADDARGS -c "Live System User" liveuser
|
|
|
|
passwd -d liveuser > /dev/null
|
2013-03-27 15:32:23 +00:00
|
|
|
usermod -aG wheel liveuser > /dev/null
|
2008-04-13 15:24:59 +00:00
|
|
|
|
2013-05-27 22:40:28 +00:00
|
|
|
# Remove root password lock
|
|
|
|
passwd -d root > /dev/null
|
|
|
|
|
2008-04-13 15:24:59 +00:00
|
|
|
# turn off firstboot for livecd boots
|
2011-10-01 13:37:06 +00:00
|
|
|
systemctl --no-reload disable firstboot-text.service 2> /dev/null || :
|
|
|
|
systemctl --no-reload disable firstboot-graphical.service 2> /dev/null || :
|
|
|
|
systemctl stop firstboot-text.service 2> /dev/null || :
|
|
|
|
systemctl stop firstboot-graphical.service 2> /dev/null || :
|
2008-04-13 15:24:59 +00:00
|
|
|
|
2011-04-03 13:41:31 +00:00
|
|
|
# don't use prelink on a running live image
|
|
|
|
sed -i 's/PRELINKING=yes/PRELINKING=no/' /etc/sysconfig/prelink &>/dev/null || :
|
|
|
|
|
2008-10-09 18:59:29 +00:00
|
|
|
# turn off mdmonitor by default
|
2011-10-01 13:37:06 +00:00
|
|
|
systemctl --no-reload disable mdmonitor.service 2> /dev/null || :
|
|
|
|
systemctl --no-reload disable mdmonitor-takeover.service 2> /dev/null || :
|
|
|
|
systemctl stop mdmonitor.service 2> /dev/null || :
|
|
|
|
systemctl stop mdmonitor-takeover.service 2> /dev/null || :
|
2008-10-10 14:26:52 +00:00
|
|
|
|
2011-03-01 16:04:34 +00:00
|
|
|
# don't enable the gnome-settings-daemon packagekit plugin
|
2014-06-03 11:25:11 +00:00
|
|
|
gsettings set org.gnome.software download-updates 'false' || :
|
2008-06-03 11:49:27 +00:00
|
|
|
|
2008-04-13 15:24:59 +00:00
|
|
|
# don't start cron/at as they tend to spawn things which are
|
|
|
|
# disk intensive that are painful on a live image
|
2011-10-01 13:37:06 +00:00
|
|
|
systemctl --no-reload disable crond.service 2> /dev/null || :
|
|
|
|
systemctl --no-reload disable atd.service 2> /dev/null || :
|
|
|
|
systemctl stop crond.service 2> /dev/null || :
|
|
|
|
systemctl stop atd.service 2> /dev/null || :
|
2008-04-13 15:24:59 +00:00
|
|
|
|
2015-06-18 16:30:33 +00:00
|
|
|
# Don't sync the system clock when running live (RHBZ #1018162)
|
|
|
|
sed -i 's/rtcsync//' /etc/chrony.conf
|
|
|
|
|
2013-08-20 15:50:39 +00:00
|
|
|
# Mark things as configured
|
|
|
|
touch /.liveimg-configured
|
|
|
|
|
2013-06-24 19:46:36 +00:00
|
|
|
# add static hostname to work around xauth bug
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=679486
|
|
|
|
echo "localhost" > /etc/hostname
|
|
|
|
|
2008-04-13 15:24:59 +00:00
|
|
|
EOF
|
|
|
|
|
2008-06-03 11:49:27 +00:00
|
|
|
# bah, hal starts way too late
|
2008-10-02 15:05:16 +00:00
|
|
|
cat > /etc/rc.d/init.d/livesys-late << EOF
|
2008-06-03 11:49:27 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# live: Late init script for live image
|
|
|
|
#
|
|
|
|
# chkconfig: 345 99 01
|
|
|
|
# description: Late init script for live image.
|
|
|
|
|
|
|
|
. /etc/init.d/functions
|
|
|
|
|
2013-03-19 18:43:49 +00:00
|
|
|
if ! strstr "\`cat /proc/cmdline\`" rd.live.image || [ "\$1" != "start" ] || [ -e /.liveimg-late-configured ] ; then
|
2008-06-03 11:49:27 +00:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
exists() {
|
|
|
|
which \$1 >/dev/null 2>&1 || return
|
|
|
|
\$*
|
|
|
|
}
|
|
|
|
|
|
|
|
touch /.liveimg-late-configured
|
|
|
|
|
|
|
|
# read some variables out of /proc/cmdline
|
|
|
|
for o in \`cat /proc/cmdline\` ; do
|
|
|
|
case \$o in
|
|
|
|
ks=*)
|
2009-12-12 02:32:38 +00:00
|
|
|
ks="--kickstart=\${o#ks=}"
|
2008-06-03 11:49:27 +00:00
|
|
|
;;
|
|
|
|
xdriver=*)
|
2010-08-12 15:43:00 +00:00
|
|
|
xdriver="\${o#xdriver=}"
|
2008-06-03 11:49:27 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
# if liveinst or textinst is given, start anaconda
|
|
|
|
if strstr "\`cat /proc/cmdline\`" liveinst ; then
|
2008-10-23 21:49:21 +00:00
|
|
|
plymouth --quit
|
2008-06-03 11:49:27 +00:00
|
|
|
/usr/sbin/liveinst \$ks
|
|
|
|
fi
|
|
|
|
if strstr "\`cat /proc/cmdline\`" textinst ; then
|
2008-10-23 21:49:21 +00:00
|
|
|
plymouth --quit
|
2008-06-03 11:49:27 +00:00
|
|
|
/usr/sbin/liveinst --text \$ks
|
|
|
|
fi
|
|
|
|
|
|
|
|
# configure X, allowing user to override xdriver
|
|
|
|
if [ -n "\$xdriver" ]; then
|
2010-08-12 15:43:00 +00:00
|
|
|
cat > /etc/X11/xorg.conf.d/00-xdriver.conf <<FOE
|
|
|
|
Section "Device"
|
|
|
|
Identifier "Videocard0"
|
|
|
|
Driver "\$xdriver"
|
|
|
|
EndSection
|
|
|
|
FOE
|
2008-06-03 11:49:27 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
2008-10-02 15:05:16 +00:00
|
|
|
chmod 755 /etc/rc.d/init.d/livesys
|
|
|
|
/sbin/restorecon /etc/rc.d/init.d/livesys
|
|
|
|
/sbin/chkconfig --add livesys
|
2008-04-13 15:24:59 +00:00
|
|
|
|
2008-10-02 15:05:16 +00:00
|
|
|
chmod 755 /etc/rc.d/init.d/livesys-late
|
|
|
|
/sbin/restorecon /etc/rc.d/init.d/livesys-late
|
|
|
|
/sbin/chkconfig --add livesys-late
|
2008-06-03 11:49:27 +00:00
|
|
|
|
2012-10-12 14:39:17 +00:00
|
|
|
# enable tmpfs for /tmp
|
|
|
|
systemctl enable tmp.mount
|
|
|
|
|
2014-09-02 15:39:35 +00:00
|
|
|
# make it so that we don't do writing to the overlay for things which
|
|
|
|
# are just tmpdirs/caches
|
|
|
|
# note https://bugzilla.redhat.com/show_bug.cgi?id=1135475
|
|
|
|
cat >> /etc/fstab << EOF
|
|
|
|
vartmp /var/tmp tmpfs defaults 0 0
|
|
|
|
varcacheyum /var/cache/yum tmpfs mode=0755,context=system_u:object_r:rpm_var_cache_t:s0 0 0
|
|
|
|
EOF
|
|
|
|
|
2008-06-03 11:49:27 +00:00
|
|
|
# work around for poor key import UI in PackageKit
|
|
|
|
rm -f /var/lib/rpm/__db*
|
2014-04-07 12:04:57 +00:00
|
|
|
releasever=$(rpm -q --qf '%{version}\n' --whatprovides system-release)
|
2013-12-12 10:12:29 +00:00
|
|
|
basearch=$(uname -i)
|
2013-10-16 22:15:15 +00:00
|
|
|
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
2009-12-08 14:24:38 +00:00
|
|
|
echo "Packages within this LiveCD"
|
|
|
|
rpm -qa
|
2011-01-26 06:51:41 +00:00
|
|
|
# Note that running rpm recreates the rpm db files which aren't needed or wanted
|
|
|
|
rm -f /var/lib/rpm/__db*
|
2008-06-03 11:49:27 +00:00
|
|
|
|
2008-08-11 14:52:18 +00:00
|
|
|
# go ahead and pre-make the man -k cache (#455968)
|
2010-08-04 15:58:13 +00:00
|
|
|
/usr/bin/mandb
|
2008-08-11 14:52:18 +00:00
|
|
|
|
2008-06-03 11:49:27 +00:00
|
|
|
# save a little bit of space at least...
|
2010-01-02 14:02:43 +00:00
|
|
|
rm -f /boot/initramfs*
|
2008-04-13 15:24:59 +00:00
|
|
|
# make sure there aren't core files lying around
|
|
|
|
rm -f /core*
|
|
|
|
|
2010-04-30 11:50:27 +00:00
|
|
|
# convince readahead not to collect
|
2011-03-01 15:40:02 +00:00
|
|
|
# FIXME: for systemd
|
2010-04-30 11:50:27 +00:00
|
|
|
|
2014-12-02 23:03:12 +00:00
|
|
|
# forcibly regenerate fontconfig cache (so long as this live image has
|
|
|
|
# fontconfig) - see #1169979
|
|
|
|
if [ -x /usr/bin/fc-cache ] ; then
|
|
|
|
fc-cache -f
|
|
|
|
fi
|
|
|
|
|
2015-03-06 20:17:41 +00:00
|
|
|
echo 'File created by kickstart. See systemd-update-done.service(8).' \
|
|
|
|
| tee /etc/.updated >/var/.updated
|
|
|
|
|
2008-04-13 15:24:59 +00:00
|
|
|
%end
|
|
|
|
|
|
|
|
|
|
|
|
%post --nochroot
|
2014-08-01 17:05:44 +00:00
|
|
|
cp $INSTALL_ROOT/usr/share/licenses/*-release/* $LIVE_ROOT/
|
2008-04-13 15:24:59 +00:00
|
|
|
|
|
|
|
# only works on x86, x86_64
|
|
|
|
if [ "$(uname -i)" = "i386" -o "$(uname -i)" = "x86_64" ]; then
|
|
|
|
if [ ! -d $LIVE_ROOT/LiveOS ]; then mkdir -p $LIVE_ROOT/LiveOS ; fi
|
|
|
|
cp /usr/bin/livecd-iso-to-disk $LIVE_ROOT/LiveOS
|
|
|
|
fi
|
|
|
|
%end
|