summaryrefslogtreecommitdiffstats
path: root/bootstrap/generated-dists/Vagrantfile
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap/generated-dists/Vagrantfile')
-rw-r--r--bootstrap/generated-dists/Vagrantfile70
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