2015-03-18 19:37:20 +00:00
|
|
|
# Like the Cloud Base image, but tuned for vagrant. Enable
|
|
|
|
# the vagrant user, disable cloud-init.
|
|
|
|
|
|
|
|
%include fedora-cloud-base.ks
|
|
|
|
|
|
|
|
services --disabled=cloud-init,cloud-init-local,cloud-config,cloud-final
|
|
|
|
|
2015-04-02 03:15:39 +00:00
|
|
|
# So, to be clear, this gaping security hole is an integral part of how
|
|
|
|
# Vagrant works - These images are _not_ supposed to be run in any public-
|
|
|
|
# Internet facing way - They are for use on developer setups, almost always
|
|
|
|
# with NAT
|
2015-03-18 19:37:20 +00:00
|
|
|
user --name=vagrant --password=vagrant
|
|
|
|
|
2015-04-02 03:15:39 +00:00
|
|
|
# Suggestion from @purpleidea that most/many vagrant boxes also set root PW
|
|
|
|
# to "vagrant" for ease of use. Again, see comments above.
|
|
|
|
rootpw vagrant
|
|
|
|
|
|
|
|
# The addition of the net.ifnames=0 and biosdevnames=0 option ensures that
|
|
|
|
# even on VirtualBox virt, we get a primary network device with "eth0" as the name
|
|
|
|
# This simplifies things and allows a single disk image for both supported Vagrant
|
|
|
|
# platforms (virtualbox and kvm)
|
2016-05-03 21:22:29 +00:00
|
|
|
bootloader --timeout=1 --append="no_timer_check console=tty1 console=ttyS0,115200n8 net.ifnames=0 biosdevname=0" --extlinux
|
2015-04-02 03:15:39 +00:00
|
|
|
|
|
|
|
%packages
|
|
|
|
# The default koji Vagrantfile configuration uses rsync to sync files between
|
|
|
|
# the vagrant host and the guest. It uses yum to verify that rsync is present
|
|
|
|
# and/or install it if it is not. It will fail without adding the yum compat
|
|
|
|
# layer for dnf
|
|
|
|
# TODO: Teach vagrant about dnf
|
|
|
|
dnf-yum
|
2015-04-25 17:38:04 +00:00
|
|
|
# rsync gets installed when the Vagrant box is first launched on the
|
|
|
|
# users setup. This can actually take a bit of time. Just fold it
|
|
|
|
# in to the base box disk image
|
|
|
|
rsync
|
2015-04-02 03:15:39 +00:00
|
|
|
%end
|
|
|
|
|
2015-03-18 19:37:20 +00:00
|
|
|
%post --erroronfail
|
|
|
|
|
|
|
|
# Work around cloud-init being both disabled and enabled; need
|
|
|
|
# to refactor to a common base.
|
|
|
|
systemctl mask cloud-init cloud-init-local cloud-config cloud-final
|
|
|
|
|
|
|
|
# Vagrant setup
|
|
|
|
sed -i 's,Defaults\\s*requiretty,Defaults !requiretty,' /etc/sudoers
|
2017-02-20 14:00:14 +00:00
|
|
|
echo 'vagrant ALL=(ALL) NOPASSWD: ALL' > /etc/sudoers.d/vagrant-nopasswd
|
2015-03-18 19:37:20 +00:00
|
|
|
sed -i 's/.*UseDNS.*/UseDNS no/' /etc/ssh/sshd_config
|
|
|
|
mkdir -m 0700 -p ~vagrant/.ssh
|
|
|
|
cat > ~vagrant/.ssh/authorized_keys << EOKEYS
|
|
|
|
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6NF8iallvQVp22WDkTkyrtvp9eWW6A8YVr+kz4TjGYe7gHzIw+niNltGEFHzD8+v1I2YJ6oXevct1YeS0o9HZyN1Q9qgCgzUFtdOKLv6IedplqoPkcmF0aYet2PkEDo3MlTBckFXPITAMzF8dJSIFo9D8HfdOV0IAdx4O7PtixWKn5y2hMNG0zQPyUecp4pzC6kivAIhyfHilFR61RGL+GPXQ2MWZWFYbAGjyiYJnAmCP3NOTd0jMZEnDkbUvxhMmBYSdETk1rRgm+R4LOzFUGaHqHDLKLX+FIPKcF96hrucXzcWyLbIbEgE98OHlnVYCzRdK8jlqm8tehUc9c9WhQ== vagrant insecure public key
|
|
|
|
EOKEYS
|
|
|
|
chmod 600 ~vagrant/.ssh/authorized_keys
|
|
|
|
chown -R vagrant:vagrant ~vagrant/.ssh/
|
|
|
|
|
2015-04-02 03:15:39 +00:00
|
|
|
# Further suggestion from @purpleidea (James Shubin) - extend key to root users as well
|
|
|
|
mkdir -m 0700 -p /root/.ssh
|
|
|
|
cp /home/vagrant/.ssh/authorized_keys /root/.ssh/authorized_keys
|
|
|
|
chmod 600 /root/.ssh/authorized_keys
|
|
|
|
chown -R root:root /root/.ssh
|
|
|
|
|
2015-03-18 19:37:20 +00:00
|
|
|
%end
|
|
|
|
|