1
0
mirror of https://github.com/krislamo/vagrant-easyredmine synced 2024-11-09 22:40:36 +00:00
This commit is contained in:
Mark Heiges 2015-11-20 13:50:50 -05:00
parent 232b47d587
commit 28a318a4e4

5
Vagrantfile vendored
View File

@ -1,4 +1,3 @@
IP='192.168.100.150'
Vagrant.configure(2) do |config|
config.ssh.forward_agent = 'true'
@ -7,13 +6,11 @@ Vagrant.configure(2) do |config|
config.vm.box_url = 'http://software.apidb.org/vagrant/centos-7.1-64-nocm.json'
config.vm.hostname = 'redmine.vm.apidb.org'
config.vm.network :private_network, ip: IP
config.vm.network :private_network, type: 'dhcp'
if Vagrant.has_plugin?('landrush')
config.landrush.enabled = true
config.landrush.tld = 'vm.apidb.org'
config.landrush.host 'redmine.vm.apidb.org', IP
config.landrush.host_ip_address = IP
end
config.vm.provision :ansible do |ansible|