New kickstart file added for modular fedora. For issue https://pagure.io/releng/issue/7074

Signed-off-by: Rashmi Nargundkar <rnargund@redhat.com>
This commit is contained in:
Rashmi Nargundkar 2017-10-04 11:56:15 -04:00
parent 80a8d03f7d
commit aa99fb2c9e
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
%include fedora-arm-base.ks
# server defaults to xfs for / so lets do so on arm also
part / --size=2500 --fstype xfs
%packages
# install the default groups for the server evironment since installing the environment is not working
@server-product
@standard
@headless-management
@container-management
@domain-client
-initial-setup-gui
-generic-release*
fedora-modular-release
%end
%post
# setup systemd to boot to the right runlevel
echo -n "Setting default runlevel to multiuser text mode"
rm -f /etc/systemd/system/default.target
ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
echo .
%end