Updated Vagrantfile
This commit is contained in:
parent
de4a895c3d
commit
d4e6d3daa1
1 changed files with 17 additions and 13 deletions
22
Vagrantfile
vendored
22
Vagrantfile
vendored
|
@ -3,17 +3,23 @@
|
|||
|
||||
Vagrant.require_version ">= 1.6.2"
|
||||
|
||||
# { :hostname => 'altair', :desc => 'Archlinux', :ip => '192.168.14.41', :box => 'Megabyte/Archlinux-Desktop' },
|
||||
# { :hostname => 'caph', :desc => 'CentOS 9 Stream', :ip => '192.168.14.42', :box => 'Megabyte/CentOS-Desktop' },
|
||||
# { :hostname => 'mira', :desc => 'macOS 13', :ip => '192.168.14.45', :box => 'Beta/macOS-13', :cpus => 4, :ram => 8192 },
|
||||
|
||||
nodes = [
|
||||
{ :hostname => 'altair', :desc => 'Archlinux', :ip => '192.168.14.41', :box => 'Beta/Archlinux' },
|
||||
{ :hostname => 'caph', :desc => 'CentOS 9 Stream', :ip => '192.168.14.42', :box => 'Beta/CentOS-Stream-9' },
|
||||
{ :hostname => 'denab', :desc => 'Debian 11', :ip => '192.168.14.43', :box => 'Beta/Debian-11' },
|
||||
{ :hostname => 'fulu', :desc => 'Fedora 37', :ip => '192.168.14.44', :box => 'Beta/Fedora-37' },
|
||||
{ :hostname => 'mira', :desc => 'macOS 13', :ip => '192.168.14.45', :box => 'Beta/macOS-13', :cpus => 4, :ram => 8192 },
|
||||
{ :hostname => 'ukdah', :desc => 'Ubuntu 22.04', :ip => '192.168.14.46', :box => 'Beta/Ubuntu-22' },
|
||||
{ :hostname => 'wazn', :desc => 'Windows 11', :ip => '192.168.14.47', :box => 'Beta/Windows-11', :cpus => 4, :ram => 4096 }
|
||||
{ :hostname => 'denab', :desc => 'Debian 11', :ip => '192.168.14.43', :box => 'Megabyte/Debian-Desktop' },
|
||||
{ :hostname => 'fulu', :desc => 'Fedora 37', :ip => '192.168.14.44', :box => 'Megabyte/Fedora-Desktop' },
|
||||
{ :hostname => 'ukdah', :desc => 'Ubuntu 22.04', :ip => '192.168.14.46', :box => 'Megabyte/Ubuntu-Desktop' },
|
||||
{ :hostname => 'wazn', :desc => 'Windows 11', :ip => '192.168.14.47', :box => 'Megabyte/Windows-Desktop', :cpus => 4, :ram => 4096 }
|
||||
]
|
||||
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.provision "install-doctor",
|
||||
type: "shell",
|
||||
preserve_order: true,
|
||||
inline: "bash <(curl -sSL https://install.doctor/start)"
|
||||
|
||||
nodes.each do |node|
|
||||
config.ssh.password = "vagrant"
|
||||
config.ssh.username = "vagrant"
|
||||
|
@ -120,6 +126,4 @@ Vagrant.configure("2") do |config|
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
config.vm.provision "shell", path: "https://install.doctor/start"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue