vagrant-invade 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/invade.yml.dist +7 -6
- data/lib/vagrant-invade/builder/plugin/r10k.rb +1 -1
- data/lib/vagrant-invade/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2d8dc66a95503e3e21f6fa59b13194e676c1af14
|
|
4
|
+
data.tar.gz: 5230af9758e5464712bff76c64eb4bda382041e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a4e233301c996a26c91eeb8126a590a86495b1f005ee9c8fa61f9c3ebb7e490a72e8d53ba708eca64905e514d8220ab01485cf5656bf08767cc15720533d8a2
|
|
7
|
+
data.tar.gz: 65a51b0699633c08464dad4e043dd8c2901a095ee35ca43c0db27d032993d60058eaedafde946b1cce70124cf1c29ba3048d809c15db86400874261f2a82d883
|
data/invade.yml.dist
CHANGED
|
@@ -65,12 +65,13 @@ machines:
|
|
|
65
65
|
# enabled: true
|
|
66
66
|
|
|
67
67
|
# r10k:
|
|
68
|
+
# enabled: true
|
|
68
69
|
# puppet_dir: './puppet'
|
|
69
70
|
# puppetfile_path: './puppet/Puppetfile'
|
|
70
71
|
# module_path: './puppet/vendor'
|
|
71
|
-
# modules:
|
|
72
|
-
#
|
|
73
|
-
#
|
|
74
|
-
#
|
|
75
|
-
#
|
|
76
|
-
#
|
|
72
|
+
# modules:
|
|
73
|
+
# ssh:
|
|
74
|
+
# url: 'https://github.com/innogames/invade-puppet-ssh.git'
|
|
75
|
+
# sql:
|
|
76
|
+
# url: 'https://github.com/example42/puppet-mysql.git',
|
|
77
|
+
# version: '2.1.5'
|
|
@@ -35,7 +35,7 @@ module VagrantPlugins
|
|
|
35
35
|
if @r10k_data['enabled'] && @r10k_data['modules']
|
|
36
36
|
|
|
37
37
|
# Configured puppet dir must exists. Otherwise skip generating Puppetfile.
|
|
38
|
-
unless Dir.exists?(@
|
|
38
|
+
unless Dir.exists?(@r10k_data['puppet_dir'])
|
|
39
39
|
@ui.error("[Invade] Puppet dir '#{@r10k_data['puppet_dir']}' does not exists. Can't load specified modules.")
|
|
40
40
|
else
|
|
41
41
|
basic_modules = {
|