You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
796 B
41 lines
796 B
install
|
|
cdrom
|
|
lang en_US.UTF-8
|
|
keyboard us
|
|
network --bootproto=dhcp --noipv6 --onboot=on --device=eth0
|
|
rootpw --plaintext vagrant
|
|
firewall --disabled
|
|
selinux --permissive
|
|
timezone UTC
|
|
bootloader --timeout=1 --location=mbr --append="net.ifnames=0 biosdevname=0"
|
|
text
|
|
skipx
|
|
zerombr
|
|
clearpart --all --initlabel
|
|
autopart --nohome --nolvm --noboot
|
|
firstboot --disabled
|
|
reboot --eject
|
|
user --name=vagrant --plaintext --password vagrant
|
|
|
|
%packages --ignoremissing --excludedocs
|
|
bzip2
|
|
tar
|
|
wget
|
|
nfs-utils
|
|
net-tools
|
|
rsync
|
|
-plymouth
|
|
-plymouth-core-libs
|
|
-fedora-release-notes
|
|
-mcelog
|
|
-smartmontools
|
|
-usbutils
|
|
-microcode_ctl
|
|
%end
|
|
|
|
%post
|
|
# sudo
|
|
echo 'Defaults:vagrant !requiretty' > /etc/sudoers.d/vagrant
|
|
echo '%vagrant ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers.d/vagrant
|
|
chmod 440 /etc/sudoers.d/vagrant
|
|
%end
|
|
|