puppet 6.10.0-x86-mingw32 → 6.10.1-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CONTRIBUTING.md +1 -1
- data/Gemfile +1 -1
- data/Gemfile.lock +18 -18
- data/ext/project_data.yaml +2 -2
- data/lib/puppet/module_tool/applications/installer.rb +5 -1
- data/lib/puppet/module_tool/tar/mini.rb +11 -1
- data/lib/puppet/network/uri.rb +18 -0
- data/lib/puppet/node/environment.rb +5 -15
- data/lib/puppet/pops/validation.rb +11 -19
- data/lib/puppet/provider/service/windows.rb +8 -0
- data/lib/puppet/type/notify.rb +3 -2
- data/lib/puppet/type/service.rb +7 -2
- data/lib/puppet/util/windows/service.rb +149 -4
- data/lib/puppet/version.rb +1 -1
- data/locales/puppet.pot +81 -69
- data/man/man5/puppet.conf.5 +2 -2
- data/man/man8/puppet-agent.8 +1 -1
- data/man/man8/puppet-apply.8 +1 -1
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-config.8 +1 -1
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +1 -1
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +1 -1
- data/man/man8/puppet-filebucket.8 +1 -1
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-key.8 +1 -1
- data/man/man8/puppet-lookup.8 +1 -1
- data/man/man8/puppet-man.8 +1 -1
- data/man/man8/puppet-module.8 +1 -1
- data/man/man8/puppet-node.8 +1 -1
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +1 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +1 -1
- data/man/man8/puppet-ssl.8 +1 -1
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/integration/type/notify_spec.rb +46 -0
- data/spec/unit/module_tool/tar/mini_spec.rb +1 -1
- data/spec/unit/network/http/api/indirected_routes_spec.rb +25 -10
- data/spec/unit/network/uri_spec.rb +47 -0
- data/spec/unit/provider/service/windows_spec.rb +20 -0
- data/spec/unit/type/file/source_spec.rb +4 -4
- data/spec/unit/type/schedule_spec.rb +3 -1
- data/spec/unit/type/service_spec.rb +16 -0
- data/spec/unit/util/windows/service_spec.rb +9 -0
- metadata +9 -4
@@ -93,6 +93,13 @@ describe test_title, "when validating attribute values" do
|
|
93
93
|
expect(srv.should(:enable)).to eq(:manual)
|
94
94
|
end
|
95
95
|
|
96
|
+
it "should support :delayed as a value on Windows" do
|
97
|
+
allow(Puppet::Util::Platform).to receive(:windows?).and_return(true)
|
98
|
+
|
99
|
+
srv = Puppet::Type.type(:service).new(:name => "yay", :enable => :delayed)
|
100
|
+
expect(srv.should(:enable)).to eq(:delayed)
|
101
|
+
end
|
102
|
+
|
96
103
|
it "should not support :manual as a value when not on Windows" do
|
97
104
|
allow(Puppet::Util::Platform).to receive(:windows?).and_return(false)
|
98
105
|
|
@@ -101,6 +108,15 @@ describe test_title, "when validating attribute values" do
|
|
101
108
|
/Setting enable to manual is only supported on Microsoft Windows\./
|
102
109
|
)
|
103
110
|
end
|
111
|
+
|
112
|
+
it "should not support :delayed as a value when not on Windows" do
|
113
|
+
allow(Puppet::Util::Platform).to receive(:windows?).and_return(false)
|
114
|
+
|
115
|
+
expect { Puppet::Type.type(:service).new(:name => "yay", :enable => :delayed) }.to raise_error(
|
116
|
+
Puppet::Error,
|
117
|
+
/Setting enable to delayed is only supported on Microsoft Windows\./
|
118
|
+
)
|
119
|
+
end
|
104
120
|
end
|
105
121
|
|
106
122
|
describe "the timeout parameter" do
|
@@ -41,6 +41,10 @@ describe "Puppet::Util::Windows::Service", :if => Puppet.features.microsoft_wind
|
|
41
41
|
expect(subject::QUERY_SERVICE_CONFIGW).to receive(:new).and_return(query_return)
|
42
42
|
end
|
43
43
|
|
44
|
+
def expect_successful_config_query2_and_return(param, query_return)
|
45
|
+
expect(param).to receive(:new).and_return(query_return)
|
46
|
+
end
|
47
|
+
|
44
48
|
let(:subject) { Puppet::Util::Windows::Service }
|
45
49
|
let(:pointer) { double() }
|
46
50
|
let(:mock_service_name) { double() }
|
@@ -51,7 +55,9 @@ describe "Puppet::Util::Windows::Service", :if => Puppet.features.microsoft_wind
|
|
51
55
|
before do
|
52
56
|
allow(subject).to receive(:QueryServiceStatusEx).and_return(1)
|
53
57
|
allow(subject).to receive(:QueryServiceConfigW).and_return(1)
|
58
|
+
allow(subject).to receive(:QueryServiceConfig2W).and_return(1)
|
54
59
|
allow(subject).to receive(:ChangeServiceConfigW).and_return(1)
|
60
|
+
allow(subject).to receive(:ChangeServiceConfig2W).and_return(1)
|
55
61
|
allow(subject).to receive(:OpenSCManagerW).and_return(scm)
|
56
62
|
allow(subject).to receive(:OpenServiceW).and_return(service)
|
57
63
|
allow(subject).to receive(:CloseServiceHandle)
|
@@ -577,6 +583,9 @@ describe "Puppet::Util::Windows::Service", :if => Puppet.features.microsoft_wind
|
|
577
583
|
}.each do |start_type_name, start_type|
|
578
584
|
it "queries the service and returns the service start type #{start_type_name}" do
|
579
585
|
expect_successful_config_query_and_return({:dwStartType => start_type})
|
586
|
+
if start_type_name == :SERVICE_AUTO_START
|
587
|
+
expect_successful_config_query2_and_return(subject::SERVICE_DELAYED_AUTO_START_INFO, {:fDelayedAutostart => 0})
|
588
|
+
end
|
580
589
|
expect(subject.service_start_type(mock_service_name)).to eq(start_type_name)
|
581
590
|
end
|
582
591
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.10.
|
4
|
+
version: 6.10.1
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- Puppet Labs
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-10-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: facter
|
@@ -224,14 +224,14 @@ dependencies:
|
|
224
224
|
requirements:
|
225
225
|
- - "~>"
|
226
226
|
- !ruby/object:Gem::Version
|
227
|
-
version: 0.
|
227
|
+
version: '0.9'
|
228
228
|
type: :runtime
|
229
229
|
prerelease: false
|
230
230
|
version_requirements: !ruby/object:Gem::Requirement
|
231
231
|
requirements:
|
232
232
|
- - "~>"
|
233
233
|
- !ruby/object:Gem::Version
|
234
|
-
version: 0.
|
234
|
+
version: '0.9'
|
235
235
|
description: Puppet, an automated configuration management tool
|
236
236
|
email: info@puppetlabs.com
|
237
237
|
executables:
|
@@ -781,6 +781,7 @@ files:
|
|
781
781
|
- lib/puppet/network/resolver.rb
|
782
782
|
- lib/puppet/network/rest_controller.rb
|
783
783
|
- lib/puppet/network/rights.rb
|
784
|
+
- lib/puppet/network/uri.rb
|
784
785
|
- lib/puppet/node.rb
|
785
786
|
- lib/puppet/node/environment.rb
|
786
787
|
- lib/puppet/node/facts.rb
|
@@ -1891,6 +1892,7 @@ files:
|
|
1891
1892
|
- spec/integration/transaction_spec.rb
|
1892
1893
|
- spec/integration/type/exec_spec.rb
|
1893
1894
|
- spec/integration/type/file_spec.rb
|
1895
|
+
- spec/integration/type/notify_spec.rb
|
1894
1896
|
- spec/integration/type/package_spec.rb
|
1895
1897
|
- spec/integration/type/tidy_spec.rb
|
1896
1898
|
- spec/integration/type_spec.rb
|
@@ -2251,6 +2253,7 @@ files:
|
|
2251
2253
|
- spec/unit/network/http_spec.rb
|
2252
2254
|
- spec/unit/network/resolver_spec.rb
|
2253
2255
|
- spec/unit/network/rights_spec.rb
|
2256
|
+
- spec/unit/network/uri_spec.rb
|
2254
2257
|
- spec/unit/node/environment_spec.rb
|
2255
2258
|
- spec/unit/node/facts_spec.rb
|
2256
2259
|
- spec/unit/node_spec.rb
|
@@ -3134,6 +3137,7 @@ test_files:
|
|
3134
3137
|
- spec/integration/transaction_spec.rb
|
3135
3138
|
- spec/integration/type/exec_spec.rb
|
3136
3139
|
- spec/integration/type/file_spec.rb
|
3140
|
+
- spec/integration/type/notify_spec.rb
|
3137
3141
|
- spec/integration/type/package_spec.rb
|
3138
3142
|
- spec/integration/type/tidy_spec.rb
|
3139
3143
|
- spec/integration/type_spec.rb
|
@@ -3494,6 +3498,7 @@ test_files:
|
|
3494
3498
|
- spec/unit/network/http_spec.rb
|
3495
3499
|
- spec/unit/network/resolver_spec.rb
|
3496
3500
|
- spec/unit/network/rights_spec.rb
|
3501
|
+
- spec/unit/network/uri_spec.rb
|
3497
3502
|
- spec/unit/node/environment_spec.rb
|
3498
3503
|
- spec/unit/node/facts_spec.rb
|
3499
3504
|
- spec/unit/node_spec.rb
|