vagrant-azure 1.0.1 → 1.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f78492e99a52fd8ee84a9f22e445cdf2bc454d53
4
- data.tar.gz: d51719729d6bed714ad83e42c7f65469607e8f3b
3
+ metadata.gz: adcfc2b3fd8472b5d995a6801b98d55ddf6a8407
4
+ data.tar.gz: bede68a6f718a32ea37b99d5a7a10503bdb07a57
5
5
  SHA512:
6
- metadata.gz: ae447dd53d2cd7bc70b694a2d211d89e38c4dc074f05fbe5e8c69ac2bc8d68e0e2034eb14a4a93fa54d8ffd8a84daf9fe2a4b5d4291f303f33c05f3a1340425d
7
- data.tar.gz: cf0b15cc0b0f116c115bd7b9c4ceb11df7a6c36e348c9b6d0aae467359ec32ce15dbaa568dd59021637be642298c7c5ca7a21d8e4a39977c17f218df4b5973b2
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 \"#{module_paths.join(':')}\""
54
+ options << "--modulepath \"#{win_paths.join(';')}\""
49
55
  end
50
56
 
51
57
  if @hiera_config_path
@@ -5,6 +5,6 @@
5
5
 
6
6
  module VagrantPlugins
7
7
  module WinAzure
8
- VERSION = '1.0.1'
8
+ VERSION = '1.0.2'
9
9
  end
10
10
  end
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.1
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/default.pp
138
- - pkg/vagrant-azure-1.0.0.gem
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