This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Vagrantfile
36 lines (32 loc) · 1.52 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Vagrant.configure("2") do |config|
config.vm.define "vrhel6" do |rhel6|
rhel6.vm.box = "samdoran/rhel6"
rhel6.vm.hostname = "vrhel6"
rhel6.vm.network "forwarded_port", guest: 9443, host: 8750
rhel6.vm.synced_folder "./test/rhel6/", "/quipucords_installer", :mount_options => ["dmode=777", "fmode=777"]
end
config.vm.define "vrhel7" do |rhel7|
rhel7.vm.box = "generic/rhel7"
rhel7.vm.hostname = "vrhel7"
rhel7.vm.network "forwarded_port", guest: 9443, host: 8751
rhel7.vm.synced_folder "./test/rhel7/", "/quipucords_installer", :mount_options => ["dmode=777", "fmode=777"]
end
config.vm.define "vcentos6" do |centos6|
centos6.vm.box = "geerlingguy/centos6"
centos6.vm.hostname = "vcentos6"
centos6.vm.network "forwarded_port", guest: 9443, host: 8752
centos6.vm.synced_folder "./test/centos6/", "/quipucords_installer", :mount_options => ["dmode=777", "fmode=777"]
end
config.vm.define "vcentos7" do |centos7|
centos7.vm.box = "geerlingguy/centos7"
centos7.vm.hostname = "vcentos7"
centos7.vm.network "forwarded_port", guest: 9443, host: 8753
centos7.vm.synced_folder "./test/centos7/", "/quipucords_installer", :mount_options => ["dmode=777", "fmode=777"]
end
config.vm.define "vrhel8" do |rhel8|
rhel8.vm.box = "generic/rhel8"
rhel8.vm.hostname = "vrhel8"
rhel8.vm.network "forwarded_port", guest: 9443, host: 8754, host_ip:"127.0.0.1"
rhel8.vm.synced_folder "./test/rhel8/", "/quipucords_installer", :mount_options => ["dmode=777", "fmode=777"]
end
end