summaryrefslogtreecommitdiffstats
path: root/fedora-arm-minimal.ks
blob: 8cf8b87e27a8a93cc4cb9da5e2d505d304eeabe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@include fedora-arm-base.ks


%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