diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 17:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 17:47:29 +0000 |
commit | 4f5791ebd03eaec1c7da0865a383175b05102712 (patch) | |
tree | 8ce7b00f7a76baa386372422adebbe64510812d4 /bootstrap/generated-dists/Vagrantfile | |
parent | Initial commit. (diff) | |
download | samba-4f5791ebd03eaec1c7da0865a383175b05102712.tar.xz samba-4f5791ebd03eaec1c7da0865a383175b05102712.zip |
Adding upstream version 2:4.17.12+dfsg.upstream/2%4.17.12+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'bootstrap/generated-dists/Vagrantfile')
-rw-r--r-- | bootstrap/generated-dists/Vagrantfile | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/bootstrap/generated-dists/Vagrantfile b/bootstrap/generated-dists/Vagrantfile new file mode 100644 index 0000000..9b1b3f1 --- /dev/null +++ b/bootstrap/generated-dists/Vagrantfile @@ -0,0 +1,70 @@ + + +# +# 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 "f36mit120" do |v| + v.vm.box = "fedora/36-cloud-base" + v.vm.hostname = "f36mit120" + v.vm.provision :shell, path: "f36mit120/bootstrap.sh" + v.vm.provision :shell, path: "f36mit120/locale.sh" + end + + config.vm.define "fedora36" do |v| + v.vm.box = "fedora/36-cloud-base" + v.vm.hostname = "fedora36" + v.vm.provision :shell, path: "fedora36/bootstrap.sh" + v.vm.provision :shell, path: "fedora36/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 |