25 lines
437 B
Plaintext
25 lines
437 B
Plaintext
|
#version=DEVEL
|
||
|
url --url="http://dl.fedoraproject.org/pub/fedora/linux/development/$releasever/$basearch/os/"
|
||
|
install
|
||
|
network --bootproto=dhcp
|
||
|
|
||
|
bootloader --timeout=1
|
||
|
zerombr
|
||
|
clearpart --all --initlabel
|
||
|
autopart
|
||
|
|
||
|
keyboard us
|
||
|
lang en_US.UTF-8
|
||
|
timezone America/New_York --utc
|
||
|
rootpw testcase
|
||
|
shutdown
|
||
|
|
||
|
%packages --ignoremissing
|
||
|
fake-package-name
|
||
|
%end
|
||
|
|
||
|
%post
|
||
|
# If we made it this far, assume it's a success
|
||
|
echo SUCCESS > /root/RESULT
|
||
|
%end
|