disable arch hosts in test for now

This commit is contained in:
2025-02-03 22:21:12 +01:00
parent ee4bfb333d
commit c65a8f6e6a
2 changed files with 71 additions and 71 deletions
Vendored
+36 -36
View File
@@ -25,40 +25,40 @@ Vagrant.configure("2") do |config|
debian.vm.network "forwarded_port", guest: 22, host: 3024
end
config.vm.define "meridia" do |arch|
arch.vm.box = "generic/arch"
arch.vm.hostname = "test-meridia"
arch.vm.network "private_network", type: "dhcp"
arch.vm.network "forwarded_port", guest: 22, host: 3025
arch.vm.provision "shell", inline: <<-SHELL
pacman -Sy --noconfirm python
SHELL
end
config.vm.define "dibella" do |arch|
arch.vm.box = "generic/arch"
arch.vm.hostname = "test-dibella"
arch.vm.network "private_network", type: "dhcp"
arch.vm.network "forwarded_port", guest: 22, host: 3026
arch.vm.provision "shell", inline: <<-SHELL
pacman -Sy --noconfirm python
SHELL
end
config.vm.define "azura" do |arch|
arch.vm.box = "generic/arch"
arch.vm.hostname = "test-azura"
arch.vm.network "private_network", type: "dhcp"
arch.vm.network "forwarded_port", guest: 22, host: 3027
arch.vm.provision "shell", inline: <<-SHELL
pacman -Sy --noconfirm python
SHELL
end
config.vm.define "kynareth" do |arch|
arch.vm.box = "generic/arch"
arch.vm.hostname = "test-kynareth"
arch.vm.network "private_network", type: "dhcp"
arch.vm.network "forwarded_port", guest: 22, host: 3028
arch.vm.provision "shell", inline: <<-SHELL
pacman -Sy --noconfirm python
SHELL
end
# config.vm.define "meridia" do |arch|
# arch.vm.box = "generic/arch"
# arch.vm.hostname = "test-meridia"
# arch.vm.network "private_network", type: "dhcp"
# arch.vm.network "forwarded_port", guest: 22, host: 3025
# arch.vm.provision "shell", inline: <<-SHELL
# pacman -Sy --noconfirm python
# SHELL
# end
# config.vm.define "dibella" do |arch|
# arch.vm.box = "generic/arch"
# arch.vm.hostname = "test-dibella"
# arch.vm.network "private_network", type: "dhcp"
# arch.vm.network "forwarded_port", guest: 22, host: 3026
# arch.vm.provision "shell", inline: <<-SHELL
# pacman -Sy --noconfirm python
# SHELL
# end
# config.vm.define "azura" do |arch|
# arch.vm.box = "generic/arch"
# arch.vm.hostname = "test-azura"
# arch.vm.network "private_network", type: "dhcp"
# arch.vm.network "forwarded_port", guest: 22, host: 3027
# arch.vm.provision "shell", inline: <<-SHELL
# pacman -Sy --noconfirm python
# SHELL
# end
# config.vm.define "kynareth" do |arch|
# arch.vm.box = "generic/arch"
# arch.vm.hostname = "test-kynareth"
# arch.vm.network "private_network", type: "dhcp"
# arch.vm.network "forwarded_port", guest: 22, host: 3028
# arch.vm.provision "shell", inline: <<-SHELL
# pacman -Sy --noconfirm python
# SHELL
# end
end