Compare commits

...

2 Commits

Author SHA1 Message Date
Brian C. Lane
4e1ef65b33 Update example kickstarts for F19 release 2013-08-14 15:23:08 -07:00
Brian C. Lane
214e4da39e Make sure dracut uses no-hostonly mode 2013-08-14 15:22:55 -07:00
4 changed files with 7 additions and 4 deletions

View File

@ -111,7 +111,8 @@ passwd -d root > /dev/null
cat /dev/null > /dev/fstab
11. Don't delete initramfs files from /boot in %post
12. Have dracut-norescue, grub-efi, memtest86+ and syslinux in the package list
12. Have dracut-norescue, dracut-nohostonly, grub-efi, memtest86+ and
syslinux in the %packages list
One drawback to using virt-install is that it pulls the packages from
the repo each time you run it. To speed things up you either need a local

View File

@ -25,7 +25,7 @@ part swap --size=512
#
# Repositories
url --url="http://dl.fedoraproject.org/pub/fedora/linux/development/19/x86_64/os/"
url --url="http://dl.fedoraproject.org/pub/fedora/linux/releases/19/Everything/x86_64/os/"
#
#
@ -65,6 +65,7 @@ cloud-init
grub
dracut-norescue
dracut-nohostonly
%end
# more ec2-ify

View File

@ -3,7 +3,7 @@ sshpw --username=root --plaintext randOmStrinGhERE
# Firewall configuration
firewall --enabled --service=mdns
# Use network installation
url --url="http://dl.fedoraproject.org/pub/fedora/linux/development/19/x86_64/os/"
url --url="http://dl.fedoraproject.org/pub/fedora/linux/releases/19/Everything/x86_64/os/"
# X Window System configuration information
xconfig --startxonboot
@ -387,4 +387,5 @@ grub2
shim
syslinux
dracut-norescue
dracut-nohostonly
%end

View File

@ -62,7 +62,7 @@ except ImportError:
# Default parameters for rebuilding initramfs, override with --dracut-args
DRACUT_DEFAULT = ["--xz", "--add", "livenet dmsquash-live convertfs pollcdrom",
"--omit", "plymouth"]
"--omit", "plymouth", "--no-hostonly"]
ROOT_PATH = "/mnt/sysimage/"
RUNTIME = "images/install.img"