mirror of
https://github.com/krislamo/vagrant-easyredmine
synced 2024-11-09 22:40:36 +00:00
28 lines
626 B
Ruby
28 lines
626 B
Ruby
Vagrant.configure(2) do |config|
|
|
|
|
config.ssh.forward_agent = 'true'
|
|
|
|
config.vm.box = 'ebrc/centos-7-64-puppet'
|
|
|
|
config.vm.hostname = 'redmine.vm.apidb.org'
|
|
config.vm.network :private_network, type: 'dhcp'
|
|
|
|
if Vagrant.has_plugin?('landrush')
|
|
config.landrush.enabled = true
|
|
config.landrush.tld = 'vm.apidb.org'
|
|
end
|
|
|
|
config.vm.provider 'virtualbox' do |v|
|
|
v.memory = 2048
|
|
end
|
|
|
|
# config.vm.provision 'bootstrap', type: 'ansible' do |ansible|
|
|
# ansible.playbook = 'bootstrap.yml'
|
|
# end
|
|
|
|
config.vm.provision 'deploy', type: 'ansible' do |ansible|
|
|
ansible.playbook = 'playbook.yml'
|
|
end
|
|
|
|
end
|