mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 23:50:03 -06:00
d34db06377
Something went wrong with git subtree merge of the external freeipa-workshop repository. A couple of files accidently ended up in / instead of /doc/workshop/. Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
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
|