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
|
|
|
|
selinux --enforcing
|
2009-12-14 12:07:43 +00:00
|
|
|
firewall --enabled --service=mdns
|
2008-04-13 15:24:59 +00:00
|
|
|
xconfig --startxonboot
|
2016-02-08 13:10:28 +00:00
|
|
|
zerombr
|
|
|
|
clearpart --all
|
2016-02-09 12:59:50 +00:00
|
|
|
part / --size 5120 --fstype ext4
|
2016-08-24 16:50:38 +00:00
|
|
|
services --enabled=NetworkManager,ModemManager --disabled=sshd
|
2016-02-11 15:16:20 +00:00
|
|
|
network --bootproto=dhcp --device=link --activate
|
2016-11-12 21:10:51 +00:00
|
|
|
rootpw --lock --iscrypted locked
|
2016-02-08 13:10:28 +00:00
|
|
|
shutdown
|
2008-04-13 15:24:59 +00:00
|
|
|
|
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
|
2016-02-08 13:10:28 +00:00
|
|
|
kernel-modules
|
|
|
|
kernel-modules-extra
|
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.
|
2019-08-31 16:13:41 +00:00
|
|
|
#memtest86+
|
|
|
|
@x86-baremetal-tools # memtest86+ is included
|
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
|
2018-04-05 11:23:53 +00:00
|
|
|
anaconda-install-env-deps
|
2019-02-01 15:55:16 +00:00
|
|
|
anaconda-live
|
2012-09-07 19:37:13 +00:00
|
|
|
@anaconda-tools
|
2020-08-03 13:00:42 +00:00
|
|
|
# Anaconda has a weak dep on this and we don't want it on livecds, see
|
|
|
|
# https://fedoraproject.org/wiki/Changes/RemoveDeviceMapperMultipathFromWorkstationLiveCD
|
|
|
|
-fcoe-utils
|
|
|
|
-device-mapper-multipath
|
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
|
2019-08-31 16:13:41 +00:00
|
|
|
# syslinux is in @x86-baremetal-tools
|
2015-07-13 17:06:01 +00:00
|
|
|
|
2016-02-29 20:21:30 +00:00
|
|
|
# anaconda needs the locales available to run for different locales
|
|
|
|
glibc-all-langpacks
|
2018-11-01 19:49:54 +00:00
|
|
|
|
|
|
|
# no longer in @core since 2018-10, but needed for livesys script
|
|
|
|
initscripts
|
2019-03-20 15:46:09 +00:00
|
|
|
chkconfig
|
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
|
2016-06-18 13:14:35 +00:00
|
|
|
# X-Start-Before: display-manager chronyd
|
2013-02-13 15:37:36 +00:00
|
|
|
### 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=}
|
2018-08-31 23:47:01 +00:00
|
|
|
continue
|
2012-12-11 19:28:03 +00:00
|
|
|
fi
|
2009-03-06 21:54:17 +00:00
|
|
|
if [ "\${arg##live_dir=}" != "\${arg}" ]; then
|
|
|
|
livedir=\${arg##live_dir=}
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2019-09-24 20:52:40 +00:00
|
|
|
# enable swapfile if it exists
|
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=}
|
|
|
|
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
|
|
|
|
|
2017-06-20 04:06:44 +00:00
|
|
|
# add liveuser 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
|
|
|
|
2018-03-07 15:18:48 +00:00
|
|
|
# turn off abrtd on a live image
|
|
|
|
systemctl --no-reload disable abrtd.service 2> /dev/null || :
|
|
|
|
systemctl stop abrtd.service 2> /dev/null || :
|
|
|
|
|
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
|
2016-10-31 17:51:54 +00:00
|
|
|
# the hostname must be something else than 'localhost'
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1370222
|
2019-06-04 05:54:35 +00:00
|
|
|
hostnamectl set-hostname "localhost-live"
|
2013-06-24 19:46:36 +00:00
|
|
|
|
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
|
|
|
|
EOF
|
|
|
|
|
2008-06-03 11:49:27 +00:00
|
|
|
# work around for poor key import UI in PackageKit
|
|
|
|
rm -f /var/lib/rpm/__db*
|
2009-12-08 14:24:38 +00:00
|
|
|
echo "Packages within this LiveCD"
|
2020-06-17 11:14:08 +00:00
|
|
|
rpm -qa --qf '%{size}\t%{name}-%{version}-%{release}.%{arch}\n' |sort -rn
|
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-04-13 15:24:59 +00:00
|
|
|
# make sure there aren't core files lying around
|
|
|
|
rm -f /core*
|
|
|
|
|
2016-03-05 16:26:35 +00:00
|
|
|
# remove random seed, the newly installed instance should make it's own
|
|
|
|
rm -f /var/lib/systemd/random-seed
|
|
|
|
|
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
|
|
|
|
2015-03-06 20:17:41 +00:00
|
|
|
echo 'File created by kickstart. See systemd-update-done.service(8).' \
|
|
|
|
| tee /etc/.updated >/var/.updated
|
|
|
|
|
2016-03-25 18:36:19 +00:00
|
|
|
# Drop the rescue kernel and initramfs, we don't need them on the live media itself.
|
|
|
|
# See bug 1317709
|
|
|
|
rm -f /boot/*-rescue*
|
|
|
|
|
2016-08-24 16:50:38 +00:00
|
|
|
# Disable network service here, as doing it in the services line
|
|
|
|
# fails due to RHBZ #1369794
|
|
|
|
/sbin/chkconfig network off
|
|
|
|
|
2016-09-13 07:55:44 +00:00
|
|
|
# Remove machine-id on pre generated images
|
|
|
|
rm -f /etc/machine-id
|
2016-09-27 19:17:46 +00:00
|
|
|
touch /etc/machine-id
|
2016-09-13 07:55:44 +00:00
|
|
|
|
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
|
2018-11-01 02:14:54 +00:00
|
|
|
# For livecd-creator builds
|
|
|
|
if [ ! -d $LIVE_ROOT/LiveOS ]; then mkdir -p $LIVE_ROOT/LiveOS ; fi
|
|
|
|
cp /usr/bin/livecd-iso-to-disk $LIVE_ROOT/LiveOS
|
|
|
|
|
|
|
|
# For lorax/livemedia-creator builds
|
|
|
|
sed -i '
|
|
|
|
/## make boot.iso/ i\
|
|
|
|
# Add livecd-iso-to-disk script to .iso filesystem at /LiveOS/\
|
|
|
|
<% f = "usr/bin/livecd-iso-to-disk" %>\
|
|
|
|
%if exists(f):\
|
|
|
|
install ${f} ${LIVEDIR}/${f|basename}\
|
|
|
|
%endif\
|
|
|
|
' /usr/share/lorax/templates.d/99-generic/live/x86.tmpl
|
2008-04-13 15:24:59 +00:00
|
|
|
fi
|
2016-09-13 07:55:44 +00:00
|
|
|
|
2008-04-13 15:24:59 +00:00
|
|
|
%end
|