vagrant-azure 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: adcfc2b3fd8472b5d995a6801b98d55ddf6a8407
|
4
|
+
data.tar.gz: bede68a6f718a32ea37b99d5a7a10503bdb07a57
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eef2746366ff7f2ce9d7dc0dd4d74ee02f0f4ba8aea14a9add936ac0bb27610b2fca6ad1bf38fc2aef556067d8771e7de68e76b10de03d4288e74c5b94c4a4da
|
7
|
+
data.tar.gz: ee5b30f3a58811f868a3fd517516124b2cc68ebcdc1589dc5d5c4ec2194d53ddd9d1e4e1cef2d397e8f6e415ca9b557d15d0217c68a89fe9a2ed59bc3c40f351
|
@@ -21,7 +21,6 @@ module VagrantPlugins
|
|
21
21
|
env[:ui].warn "Mangement Certificate: [#{config.mgmt_certificate}]"
|
22
22
|
env[:ui].warn "Mangement Endpoint: [#{config.mgmt_endpoint}]"
|
23
23
|
env[:ui].warn "Storage Account Name: [#{config.storage_acct_name}]"
|
24
|
-
env[:ui].warn "Storage Access Key: [#{config.storage_access_key}]"
|
25
24
|
|
26
25
|
Azure.configure do |c|
|
27
26
|
c.subscription_id = config.subscription_id
|
@@ -41,11 +41,17 @@ module VagrantPlugins
|
|
41
41
|
|
42
42
|
module_paths = @module_paths.map { |_, to| to }
|
43
43
|
unless module_paths.empty?
|
44
|
+
win_paths = []
|
44
45
|
# Prepend the default module path
|
45
46
|
module_paths.unshift('/ProgramData/PuppetLabs/puppet/etc/modules')
|
47
|
+
module_paths.each do |path|
|
48
|
+
path = path.gsub('/', '\\')
|
49
|
+
path = "C:#{path}" if path =~/^\\/
|
50
|
+
win_paths << path
|
51
|
+
end
|
46
52
|
|
47
53
|
# Add the command line switch to add the module path
|
48
|
-
options << "--modulepath \"#{
|
54
|
+
options << "--modulepath \"#{win_paths.join(';')}\""
|
49
55
|
end
|
50
56
|
|
51
57
|
if @hiera_config_path
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-azure
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MSOpenTech
|
@@ -134,8 +134,9 @@ files:
|
|
134
134
|
- lib/vagrant-azure.rb
|
135
135
|
- LICENSE
|
136
136
|
- locales/en.yml
|
137
|
-
- manifests/
|
138
|
-
- pkg/vagrant-azure-1.0.
|
137
|
+
- manifests/sites.pp
|
138
|
+
- pkg/vagrant-azure-1.0.1.gem
|
139
|
+
- pkg/vagrant-azure-1.0.2.gem
|
139
140
|
- Rakefile
|
140
141
|
- README.md
|
141
142
|
- vagrant-azure.gemspec
|