vagrant-azure 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/lib/vagrant-azure/plugin.rb +4 -0
- data/lib/vagrant-azure/provisioner/puppet.rb +1 -1
- data/lib/vagrant-azure/scripts/upload_file.ps1 +2 -2
- data/lib/vagrant-azure/scripts/utils/create_session.ps1 +1 -1
- data/lib/vagrant-azure/version.rb +1 -1
- metadata +36 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2aee9b5f481d71e24f031aeebf3b3c839fc9e1f6
|
4
|
+
data.tar.gz: 1ed64f270bddda3ef6ac26d9db8c700224c4ccca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: feb568430aa70d4c59ab756d68b1a2b9c6e8a770269867f3b4a4bc3beb163eff604a4bb454e52e7485e50b9cb452ea530d00f04390b59d0f3632d405ef4fa093
|
7
|
+
data.tar.gz: 813c3493741560bb981ba4fd87454b299eb3c5496fd9b24e43d487affb297cb24cd9a04cd0a3345a340f7eb090f1dec244175297de80ebab34601fd6d127bb0f
|
data/.gitignore
CHANGED
data/lib/vagrant-azure/plugin.rb
CHANGED
@@ -48,6 +48,10 @@ module VagrantPlugins
|
|
48
48
|
'locales/en.yml',
|
49
49
|
WinAzure.source_root
|
50
50
|
)
|
51
|
+
I18n.load_path << File.expand_path(
|
52
|
+
'templates/locales/en.yml',
|
53
|
+
Vagrant.source_root
|
54
|
+
)
|
51
55
|
I18n.load_path << File.expand_path(
|
52
56
|
'templates/locales/providers_hyperv.yml',
|
53
57
|
Vagrant.source_root
|
@@ -92,7 +92,7 @@ module VagrantPlugins
|
|
92
92
|
end
|
93
93
|
|
94
94
|
@env[:ui].info I18n.t(
|
95
|
-
'
|
95
|
+
'vagrant.provisioners.puppet.running_puppet',
|
96
96
|
manifest: config.manifest_file
|
97
97
|
)
|
98
98
|
@env[:ui].info 'Executing puppet script in Windows Azure VM'
|
@@ -57,9 +57,9 @@ try {
|
|
57
57
|
if (!$response["session"] -and $response["error"]) {
|
58
58
|
$errortHash = @{
|
59
59
|
type = "PowerShellError"
|
60
|
-
|
60
|
+
error = $response["error"]
|
61
61
|
}
|
62
|
-
Write-Error-Message $
|
62
|
+
Write-Error-Message $errortHash
|
63
63
|
return
|
64
64
|
}
|
65
65
|
$session = $response["session"]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MSOpenTech
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-04-
|
11
|
+
date: 2014-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: azure
|
@@ -134,9 +134,41 @@ files:
|
|
134
134
|
- lib/vagrant-azure.rb
|
135
135
|
- LICENSE
|
136
136
|
- locales/en.yml
|
137
|
+
- manifests/site.pp
|
137
138
|
- manifests/sites.pp
|
138
|
-
-
|
139
|
-
-
|
139
|
+
- modules/regsitry/acceptance/lib/systest/util/registry.rb
|
140
|
+
- modules/regsitry/acceptance/lib/systest/util.rb
|
141
|
+
- modules/regsitry/acceptance/lib/systest.rb
|
142
|
+
- modules/regsitry/acceptance/tests/resource/registry/should_create_key.rb
|
143
|
+
- modules/regsitry/acceptance/tests/resource/registry/should_have_defined_type.rb
|
144
|
+
- modules/regsitry/acceptance/tests/resource/registry/should_manage_values.rb
|
145
|
+
- modules/regsitry/acceptance/tests/resource/registry/should_pluginsync.rb
|
146
|
+
- modules/regsitry/acceptance/tests/resource/registry/should_tolerate_mixed_case.rb
|
147
|
+
- modules/regsitry/CHANGELOG.md
|
148
|
+
- modules/regsitry/lib/puppet/provider/registry_key/registry.rb
|
149
|
+
- modules/regsitry/lib/puppet/provider/registry_value/registry.rb
|
150
|
+
- modules/regsitry/lib/puppet/type/registry_key.rb
|
151
|
+
- modules/regsitry/lib/puppet/type/registry_value.rb
|
152
|
+
- modules/regsitry/lib/puppet_x/puppetlabs/registry/provider_base.rb
|
153
|
+
- modules/regsitry/lib/puppet_x/puppetlabs/registry.rb
|
154
|
+
- modules/regsitry/LICENSE
|
155
|
+
- modules/regsitry/manifests/compliance_example.pp
|
156
|
+
- modules/regsitry/manifests/init.pp
|
157
|
+
- modules/regsitry/manifests/purge_example.pp
|
158
|
+
- modules/regsitry/manifests/service.pp
|
159
|
+
- modules/regsitry/manifests/service_example.pp
|
160
|
+
- modules/regsitry/manifests/value.pp
|
161
|
+
- modules/regsitry/metadata.json
|
162
|
+
- modules/regsitry/Modulefile
|
163
|
+
- modules/regsitry/Rakefile
|
164
|
+
- modules/regsitry/README.markdown
|
165
|
+
- modules/regsitry/spec/spec_helper.rb
|
166
|
+
- modules/regsitry/spec/unit/puppet/type/registry_key_spec.rb
|
167
|
+
- modules/regsitry/spec/unit/puppet/type/registry_value_spec.rb
|
168
|
+
- modules/regsitry/spec/watchr.rb
|
169
|
+
- modules/regsitry/tests/init.pp
|
170
|
+
- modules/regsitry/tests/registry_examples.pp
|
171
|
+
- pkg/vagrant-azure-1.0.3.gem
|
140
172
|
- Rakefile
|
141
173
|
- README.md
|
142
174
|
- vagrant-azure.gemspec
|