Kickstart install issues with F22
Hello, Its been a very long time I have used kickstart to image systems. I am trying to get kickstart to work for Fedora 22. I get up to partitioning and then it fails with groups not found error. I have setup a local NFS repo that I pull with HTTP. I have mounted the Server 22 ISO file and rsync'ed all files from the mounted area to NFS.
Since I cant upload a screen shot, here is the error:
the group 'core' is required for this installation. this group does not exist. this is a fatal error and install will be aborted.
my ks.cfg looks like this:
lang en_US
# Firewall configuration
firewall --disabled
# Network information
network --bootproto=static --device=ens32 --gateway=192.168.2.1 --ip=192.168.2.10 --nameserver=192.168.2.50 --netmask=255.255.255.0 --
onboot=true --activate --noipv6
# System authorization information
auth --useshadow --passalgo=sha512
# Use text mode install
text
firstboot --disable
# SELinux configuration
selinux --disabled
# System bootloader configuration
bootloader --location=mbr --boot-drive=sda
# Clear the Master Boot Record
zerombr
# Partition clearing information
clearpart --all --initlabel
# Disk partitioning information
autopart --type=plain
%packages
@admin-tools
@fonts
@hardware-support
@input-methods
@java
@legacy-fonts
@legacy-software-support
@networkmanager-submodules
@standard
@system-tools
%
what am I doing wrong? As I have stated, I have copied all the contents of the ISO in a NFS disk and I have verified that contents are accessible via my apache web server.
Please help.
thanks.