mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-27 09:21:59 -06:00
265d064bf8
Vagrant 2.2 on Fedora 30 enables QEMU Session by default [1] which causes problems with setting up the private network. Explicitly telling Vagrant not to use the QEMU session if we're running on Libvirt is the suggested workaround for now. [1] https://fedoraproject.org/wiki/Changes/Vagrant_2.2_with_QEMU_Session
64 lines
2.2 KiB
Ruby
64 lines
2.2 KiB
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
Vagrant.configure(2) do |config|
|
|
|
|
config.vm.box = "netoarmando/freeipa-workshop"
|
|
|
|
config.vm.synced_folder ".", "/vagrant", disabled: true
|
|
|
|
config.vm.provider :libvirt do |libvirt|
|
|
libvirt.qemu_use_session = false
|
|
libvirt.memory = 1024
|
|
end
|
|
|
|
# Vagrant's "change host name" sets the short host name. Before
|
|
# we repair /etc/hosts (see below) let's reset /etc/hostname to
|
|
# the *full* host name
|
|
#
|
|
config.vm.provision "shell",
|
|
inline: "hostname --fqdn > /etc/hostname && hostname -F /etc/hostname"
|
|
|
|
# Vagrant's "change host name" capability for Fedora maps hostname
|
|
# to loopback. We must repair /etc/hosts
|
|
#
|
|
config.vm.provision "shell",
|
|
inline: "sed -ri 's/127\.0\.0\.1\s.*/127.0.0.1 localhost localhost.localdomain/' /etc/hosts"
|
|
|
|
config.vm.define "server" do |server|
|
|
server.vm.network "private_network", ip: "192.168.33.10"
|
|
server.vm.hostname = "server.ipademo.local"
|
|
end
|
|
|
|
config.vm.define "replica" do |replica|
|
|
replica.vm.network "private_network", ip: "192.168.33.11"
|
|
replica.vm.hostname = "replica.ipademo.local"
|
|
|
|
replica.vm.provision "shell",
|
|
inline: 'echo "PEERDNS=no" >> /etc/sysconfig/network-scripts/ifcfg-eth0'
|
|
replica.vm.provision "shell",
|
|
inline: 'echo "DNS1=192.168.33.10" >> /etc/sysconfig/network-scripts/ifcfg-eth1'
|
|
replica.vm.provision "shell",
|
|
inline: 'echo "nameserver 192.168.33.10" > /etc/resolv.conf'
|
|
end
|
|
|
|
config.vm.define "client" do |client|
|
|
client.vm.network "private_network", ip: "192.168.33.20"
|
|
client.vm.hostname = "client.ipademo.local"
|
|
|
|
client.vm.provision "shell",
|
|
inline: 'echo "PEERDNS=no" >> /etc/sysconfig/network-scripts/ifcfg-eth0'
|
|
client.vm.provision "shell",
|
|
inline: 'echo "DNS1=192.168.33.10" >> /etc/sysconfig/network-scripts/ifcfg-eth1'
|
|
client.vm.provision "shell",
|
|
inline: 'echo "nameserver 192.168.33.10" > /etc/resolv.conf'
|
|
client.vm.provision "shell",
|
|
inline: 'sudo sed -i "s/^/#/g" /etc/httpd/conf.d/ssl.conf'
|
|
client.vm.provision "shell",
|
|
inline: 'systemctl -q enable httpd && systemctl start httpd'
|
|
client.vm.provision "shell",
|
|
inline: 'systemctl -q enable oddjobd && systemctl start oddjobd'
|
|
end
|
|
|
|
end
|