Skip to content
This repository was archived by the owner on Oct 29, 2020. It is now read-only.

Commit b048ff6

Browse files
committed
Moves post provision install message into salt directory for tidyness
1 parent 6b8ed8e commit b048ff6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Vagrantfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Vagrant.configure("2") do |config|
22
## Chose your base box
33
config.vm.box = "precise64"
44
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
5-
5+
66
config.vm.provider "virtualbox" do |v|
77
v.customize ["modifyvm", :id, "--memory", 1024]
88
end
@@ -12,25 +12,25 @@ Vagrant.configure("2") do |config|
1212

1313
## For masterless, mount your salt file root
1414
config.vm.synced_folder "salt/roots/", "/srv/"
15-
15+
1616
# Bare Apache httpd (http and https)
1717
config.vm.network :forwarded_port, guest: 8888, host: 8888
1818
config.vm.network :forwarded_port, guest: 8889, host: 8889
19-
19+
2020
config.vm.host_name = "dev.dosomething.org"
2121

2222
# With Varnish
2323
config.vm.network :forwarded_port, guest: 6081, host: 9999
24-
24+
2525
# Tomcat with Jenkins and Solr
2626
config.vm.network :forwarded_port, guest: 9090, host: 11111
27-
27+
2828
## Use all the defaults:
2929
config.vm.provision :salt do |salt|
3030
# Uncomment to see Salt output
3131
# salt.verbose = true
3232
salt.minion_config = "salt/minion.conf"
3333
salt.run_highstate = true
3434
end
35-
config.vm.provision :shell, :inline => 'cd /vagrant && more install_complete.txt'
35+
config.vm.provision :shell, :inline => 'more /vagrant/salt/install_complete.txt'
3636
end

0 commit comments

Comments
 (0)