qubes-installer-qubes-os/anaconda/tests/kickstart_tests/groups-and-envs-1.ks
M. Vefa Bicakci 38f3e28d77
anaconda: Update to 23.19.10
Use the output of

  git diff --full-index --binary anaconda-22.20.13-1..anaconda-23.19.10-1

from anaconda's git repository and fix-up merge conflicts.
2016-04-10 00:00:00 -04:00

37 lines
718 B
Plaintext

url --url=http://dl.fedoraproject.org/pub/fedora/linux/development/$releasever/$basearch/os/
install
network --bootproto=dhcp
bootloader --timeout=1
zerombr
clearpart --all
autopart
keyboard us
lang en
timezone America/New_York
rootpw qweqwe
shutdown
%packages
@core
@c-development
@^web-server-environment
%end
%post
# We don't have a way of determining if a group/env is installed or not.
# These sentinel packages will have to do.
rpm -q httpd
if [[ $? != 0 ]]; then
echo '*** web-server-environment was not installed' > /root/RESULT
else
rpm -q gcc
if [[ $? != 0 ]]; then
echo '*** c-development was not installed' > /root/RESULT
else
echo SUCCESS > /root/RESULT
fi
fi
%end