modifié : bts_annee_2/sisr2/seance_03/README.md

renommé :         bts_annee_2/sisr2/seance_03/inst-hb1.sh -> bts_annee_2/sisr2/seance_03/hb1/inst-hb1.sh
	renommé :         bts_annee_2/sisr2/seance_03/inst-hb2.sh -> bts_annee_2/sisr2/seance_03/hb2/inst-hb2.sh
	renommé :         bts_annee_2/sisr2/seance_03/Vagrantfile_bookworm -> bts_annee_2/sisr2/seance_03/vagrant/Vagrantfile_bookworm
	renommé :         bts_annee_2/sisr2/seance_03/Vagrantfile_rsync -> bts_annee_2/sisr2/seance_03/vagrant/Vagrantfile_rsync
This commit is contained in:
Guillaume Emorine
2024-09-12 10:38:47 +02:00
parent c296e7bab9
commit 5bfe7e88bc
5 changed files with 1 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.provision "shell", inline: "apt-get update" # execute pour chacune des machines
config.vm.define "srv1" do |srv1|#VM No'1
srv1.vm.box = "debian/bookworm64" #Setting machine type
srv1.vm.hostname = "srv1" #Setting machine type
srv1.vm.network "public_network", ip: "192.168.0.111"#Set static IP
srv1.vm.provision "shell", inline: <<-SHELL
timedatectl set-timezone Europe/Paris
apt-get install -y wget curl vim unzip apache2
echo "192.168.0.112 srv2" >> /etc/hosts
SHELL
end
config.vm.define "srv2" do |srv2|# VM No2
srv2.vm.box = "debian/bookworm64" #Setting machine type
srv2.vm.hostname = "srv2" #Setting machine type
srv2.vm.network "public_network", ip: "192.168.0.112" #Set static IP
srv2.vm.provision "shell", inline: <<-SHELL
timedatectl set-timezone Europe/Paris
apt-get install -y wget curl vim unzip apache2
echo "192.168.0.111 srv1" >> /etc/hosts
SHELL
end
end