mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
1bde388ba8
It should be enough to build on the latest Debian version. We have older Ubuntu versions already. Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
71 lines
2.1 KiB
Ruby
71 lines
2.1 KiB
Ruby
|
|
|
|
#
|
|
# This file is generated by 'bootstrap/template.py --render'
|
|
# See also bootstrap/config.py
|
|
#
|
|
|
|
|
|
Vagrant.configure("2") do |config|
|
|
config.ssh.insert_key = false
|
|
|
|
|
|
config.vm.define "centos7" do |v|
|
|
v.vm.box = "centos/7"
|
|
v.vm.hostname = "centos7"
|
|
v.vm.provision :shell, path: "centos7/bootstrap.sh"
|
|
v.vm.provision :shell, path: "centos7/locale.sh"
|
|
end
|
|
|
|
config.vm.define "centos8s" do |v|
|
|
v.vm.box = "centos/stream8"
|
|
v.vm.hostname = "centos8s"
|
|
v.vm.provision :shell, path: "centos8s/bootstrap.sh"
|
|
v.vm.provision :shell, path: "centos8s/locale.sh"
|
|
end
|
|
|
|
config.vm.define "debian11" do |v|
|
|
v.vm.box = "debian/bullseye64"
|
|
v.vm.hostname = "debian11"
|
|
v.vm.provision :shell, path: "debian11/bootstrap.sh"
|
|
v.vm.provision :shell, path: "debian11/locale.sh"
|
|
end
|
|
|
|
config.vm.define "f35mit120" do |v|
|
|
v.vm.box = "fedora/35-cloud-base"
|
|
v.vm.hostname = "f35mit120"
|
|
v.vm.provision :shell, path: "f35mit120/bootstrap.sh"
|
|
v.vm.provision :shell, path: "f35mit120/locale.sh"
|
|
end
|
|
|
|
config.vm.define "fedora35" do |v|
|
|
v.vm.box = "fedora/35-cloud-base"
|
|
v.vm.hostname = "fedora35"
|
|
v.vm.provision :shell, path: "fedora35/bootstrap.sh"
|
|
v.vm.provision :shell, path: "fedora35/locale.sh"
|
|
end
|
|
|
|
config.vm.define "opensuse153" do |v|
|
|
v.vm.box = "opensuse/openSUSE-15.3-x86_64"
|
|
v.vm.hostname = "opensuse153"
|
|
v.vm.provision :shell, path: "opensuse153/bootstrap.sh"
|
|
v.vm.provision :shell, path: "opensuse153/locale.sh"
|
|
end
|
|
|
|
config.vm.define "ubuntu1804" do |v|
|
|
v.vm.box = "ubuntu/bionic64"
|
|
v.vm.hostname = "ubuntu1804"
|
|
v.vm.provision :shell, path: "ubuntu1804/bootstrap.sh"
|
|
v.vm.provision :shell, path: "ubuntu1804/locale.sh"
|
|
end
|
|
|
|
config.vm.define "ubuntu2004" do |v|
|
|
v.vm.box = "ubuntu/focal64"
|
|
v.vm.hostname = "ubuntu2004"
|
|
v.vm.provision :shell, path: "ubuntu2004/bootstrap.sh"
|
|
v.vm.provision :shell, path: "ubuntu2004/locale.sh"
|
|
end
|
|
|
|
|
|
end
|