Skip to content

Commit 9388622

Browse files
Merge pull request AnthonyNystrom#6 from oromero/master
Adjustments
2 parents 668bb94 + 5c626f6 commit 9388622

File tree

8 files changed

+27
-576
lines changed

8 files changed

+27
-576
lines changed

Vagrantfile

Lines changed: 23 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,27 @@
11

2-
Vagrant::Config.run do |config|
3-
4-
config.vm.box = "PythonDevBootstrapPrecise"
2+
Vagrant.configure("2") do |config|
3+
4+
config.vm.box = 'PythonDevBootstrapPrecise'
55
config.vm.box_url = "http://files.vagrantup.com/precise32.box"
6+
7+
if defined? VagrantVbguest
8+
config.vbguest.auto_update = true
9+
end
10+
611
config.ssh.guest_port = 22
7-
config.vm.customize ["modifyvm", :id, "--memory", 512]
12+
config.vm.provider :virtualbox do |vb|
13+
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
14+
vb.customize ["modifyvm", :id, "--memory", "512"]
15+
end
16+
17+
config.vm.synced_folder "~/Development/Projects", "/projects"
18+
19+
config.vm.provision :puppet do |puppet|
20+
puppet.manifests_path = "manifests"
21+
puppet.manifest_file = "init.pp"
22+
puppet.module_path = "modules"
23+
puppet.options = "--verbose --debug"
24+
#puppet.options = "--verbose --noop"
25+
end
826

9-
config.vm.provision :puppet do |puppet|
10-
puppet.manifests_path = "manifests"
11-
puppet.manifest_file = "init.pp"
12-
puppet.module_path = "modules"
13-
puppet.options = "--verbose --debug"
14-
#puppet.options = "--verbose --noop"
15-
end
16-
17-
end
27+
end

manifests/init.pp

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -301,13 +301,10 @@
301301
include networking
302302
include gui
303303
include keepuptodate
304+
include web
305+
include sql
306+
include mongodb
304307

305308
#include science
306-
#include web
307309
#include pythononwheels
308-
#include sql
309-
#include mongodb
310-
#include elasticsearch
311-
#include flask
312-
313-
310+
#include flask
-14.4 MB
Binary file not shown.

modules/elasticsearch/files/elasticsearch.yml

Lines changed: 0 additions & 337 deletions
This file was deleted.

0 commit comments

Comments
 (0)