2013-05-28 06:59:42 +00:00
|
|
|
%include fedora-arm-base.ks
|
2013-05-28 06:44:45 +00:00
|
|
|
|
2015-04-18 17:37:18 +00:00
|
|
|
part swap --size=256 --fstype swap
|
|
|
|
part / --size=1200 --fstype ext4
|
2013-08-26 22:09:15 +00:00
|
|
|
|
2014-04-12 13:49:27 +00:00
|
|
|
%packages
|
|
|
|
-@standard
|
|
|
|
-@dial-up
|
2014-04-21 21:07:44 +00:00
|
|
|
-initial-setup-gui
|
2014-10-17 16:23:50 +00:00
|
|
|
-generic-release*
|
2014-04-12 13:49:27 +00:00
|
|
|
%end
|
|
|
|
|
2013-05-28 06:44:45 +00:00
|
|
|
%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 .
|
|
|
|
|
|
|
|
echo -n "Enabling initial-setup text mode on startup"
|
|
|
|
ln -s /usr/lib/systemd/system/initial-setup-text.service /etc/systemd/system/multi-user.target.wants/initial-setup-text.service
|
|
|
|
echo .
|
|
|
|
|
|
|
|
%end
|
|
|
|
|