puppet 5.5.10-x64-mingw32 → 5.5.12-x64-mingw32
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.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CODEOWNERS +30 -0
- data/Gemfile.lock +13 -13
- data/lib/puppet.rb +4 -4
- data/lib/puppet/application.rb +1 -1
- data/lib/puppet/application/filebucket.rb +6 -1
- data/lib/puppet/configurer.rb +4 -7
- data/lib/puppet/confine/boolean.rb +45 -0
- data/lib/puppet/confine/false.rb +7 -1
- data/lib/puppet/confine/true.rb +7 -1
- data/lib/puppet/defaults.rb +0 -18
- data/lib/puppet/functions/call.rb +2 -1
- data/lib/puppet/network/http/connection.rb +15 -5
- data/lib/puppet/pops/issues.rb +4 -0
- data/lib/puppet/pops/model/factory.rb +38 -4
- data/lib/puppet/pops/parser/egrammar.ra +2 -2
- data/lib/puppet/pops/parser/eparser.rb +628 -627
- data/lib/puppet/pops/parser/heredoc_support.rb +17 -7
- data/lib/puppet/pops/parser/lexer2.rb +6 -1
- data/lib/puppet/pops/parser/locator.rb +106 -86
- data/lib/puppet/pops/parser/parser_support.rb +11 -2
- data/lib/puppet/pops/types/type_mismatch_describer.rb +1 -1
- data/lib/puppet/provider/file/windows.rb +49 -1
- data/lib/puppet/provider/group/windows_adsi.rb +4 -1
- data/lib/puppet/provider/mount/parsed.rb +3 -0
- data/lib/puppet/provider/package/windows.rb +5 -1
- data/lib/puppet/provider/service/systemd.rb +1 -1
- data/lib/puppet/provider/service/upstart.rb +8 -6
- data/lib/puppet/settings.rb +10 -5
- data/lib/puppet/transaction.rb +8 -6
- data/lib/puppet/transaction/resource_harness.rb +1 -0
- data/lib/puppet/type/exec.rb +27 -5
- data/lib/puppet/type/file/mode.rb +6 -1
- data/lib/puppet/type/filebucket.rb +12 -8
- data/lib/puppet/util/command_line.rb +5 -1
- data/lib/puppet/util/log.rb +7 -2
- data/lib/puppet/util/windows/security.rb +29 -8
- data/lib/puppet/version.rb +1 -1
- data/locales/puppet.pot +196 -151
- 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-ca.8 +1 -1
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-cert.8 +1 -1
- data/man/man8/puppet-certificate.8 +1 -1
- data/man/man8/puppet-certificate_request.8 +1 -1
- data/man/man8/puppet-certificate_revocation_list.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 +6 -2
- 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-master.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-status.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/unit/provider/mount/parsed/freebsd.fstab +1 -0
- data/spec/fixtures/unit/provider/mount/parsed/freebsd.mount +1 -0
- data/spec/fixtures/unit/provider/mount/parsed/linux.fstab +1 -0
- data/spec/fixtures/unit/provider/mount/parsed/linux.mount +1 -0
- data/spec/fixtures/unit/provider/mount/parsed/netbsd.fstab +1 -0
- data/spec/fixtures/unit/provider/mount/parsed/netbsd.mount +1 -0
- data/spec/fixtures/unit/provider/mount/parsed/openbsd.fstab +1 -0
- data/spec/fixtures/unit/provider/mount/parsed/openbsd.mount +1 -0
- data/spec/integration/provider/file/windows_spec.rb +162 -0
- data/spec/integration/type/file_spec.rb +0 -19
- data/spec/unit/application_spec.rb +8 -1
- data/spec/unit/configurer_spec.rb +2 -4
- data/spec/unit/confine/false_spec.rb +27 -0
- data/spec/unit/confine/true_spec.rb +27 -0
- data/spec/unit/defaults_spec.rb +0 -14
- data/spec/unit/network/http/connection_spec.rb +1 -1
- data/spec/unit/pops/loaders/loaders_spec.rb +5 -0
- data/spec/unit/pops/parser/locator_spec.rb +45 -0
- data/spec/unit/pops/parser/parse_heredoc_spec.rb +111 -15
- data/spec/unit/pops/types/type_mismatch_describer_spec.rb +9 -0
- data/spec/unit/provider/group/windows_adsi_spec.rb +7 -1
- data/spec/unit/provider/mount/parsed_spec.rb +8 -1
- data/spec/unit/provider/package/windows_spec.rb +12 -1
- data/spec/unit/provider/service/systemd_spec.rb +6 -4
- data/spec/unit/settings_spec.rb +36 -0
- data/spec/unit/transaction/resource_harness_spec.rb +26 -0
- data/spec/unit/transaction_spec.rb +29 -0
- data/spec/unit/type/exec_spec.rb +47 -0
- data/spec/unit/type/filebucket_spec.rb +8 -6
- data/spec/unit/util/command_line_spec.rb +23 -2
- data/spec/unit/util/log_spec.rb +15 -0
- data/spec/unit/util/storage_spec.rb +19 -19
- metadata +6 -3
- data/MAINTAINERS +0 -47
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: 5.5.
|
4
|
+
version: 5.5.12
|
5
5
|
platform: x64-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-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: facter
|
@@ -183,12 +183,12 @@ executables:
|
|
183
183
|
extensions: []
|
184
184
|
extra_rdoc_files: []
|
185
185
|
files:
|
186
|
+
- CODEOWNERS
|
186
187
|
- COMMITTERS.md
|
187
188
|
- CONTRIBUTING.md
|
188
189
|
- Gemfile
|
189
190
|
- Gemfile.lock
|
190
191
|
- LICENSE
|
191
|
-
- MAINTAINERS
|
192
192
|
- README.md
|
193
193
|
- Rakefile
|
194
194
|
- bin/puppet
|
@@ -381,6 +381,7 @@ files:
|
|
381
381
|
- lib/puppet/configurer/plugin_handler.rb
|
382
382
|
- lib/puppet/confine.rb
|
383
383
|
- lib/puppet/confine/any.rb
|
384
|
+
- lib/puppet/confine/boolean.rb
|
384
385
|
- lib/puppet/confine/exists.rb
|
385
386
|
- lib/puppet/confine/false.rb
|
386
387
|
- lib/puppet/confine/feature.rb
|
@@ -1922,6 +1923,7 @@ files:
|
|
1922
1923
|
- spec/integration/parser/script_compiler_spec.rb
|
1923
1924
|
- spec/integration/parser/undef_param_spec.rb
|
1924
1925
|
- spec/integration/provider/cron/crontab_spec.rb
|
1926
|
+
- spec/integration/provider/file/windows_spec.rb
|
1925
1927
|
- spec/integration/provider/mailalias/aliases_spec.rb
|
1926
1928
|
- spec/integration/provider/mount_spec.rb
|
1927
1929
|
- spec/integration/provider/service/init_spec.rb
|
@@ -3233,6 +3235,7 @@ test_files:
|
|
3233
3235
|
- spec/integration/parser/script_compiler_spec.rb
|
3234
3236
|
- spec/integration/parser/undef_param_spec.rb
|
3235
3237
|
- spec/integration/provider/cron/crontab_spec.rb
|
3238
|
+
- spec/integration/provider/file/windows_spec.rb
|
3236
3239
|
- spec/integration/provider/mailalias/aliases_spec.rb
|
3237
3240
|
- spec/integration/provider/mount_spec.rb
|
3238
3241
|
- spec/integration/provider/service/init_spec.rb
|
data/MAINTAINERS
DELETED
@@ -1,47 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 1,
|
3
|
-
"file_format": "This MAINTAINERS file format is described at https://github.com/puppetlabs/maintainers",
|
4
|
-
"issues": "https://tickets.puppet.com/browse/PUP",
|
5
|
-
"internal_list": "https://groups.google.com/a/puppet.com/forum/?hl=en#!forum/discuss-puppet-maintainers",
|
6
|
-
"people": [
|
7
|
-
{
|
8
|
-
"github": "hlindberg",
|
9
|
-
"email": "henrik.lindberg@puppet.com",
|
10
|
-
"name": "Henrik Lindberg"
|
11
|
-
},
|
12
|
-
{
|
13
|
-
"github": "joshcooper",
|
14
|
-
"email": "josh@puppet.com",
|
15
|
-
"name": "Josh Cooper"
|
16
|
-
},
|
17
|
-
{
|
18
|
-
"github": "MikaelSmith",
|
19
|
-
"email": "michael.smith@puppet.com",
|
20
|
-
"name": "Michael Smith"
|
21
|
-
},
|
22
|
-
{
|
23
|
-
"github": "thallgren",
|
24
|
-
"email": "thomas.hallgren@puppet.com",
|
25
|
-
"name": "Thomas Hallgren"
|
26
|
-
},
|
27
|
-
{
|
28
|
-
"github": "branan",
|
29
|
-
"email": "branan@puppet.com",
|
30
|
-
"name": "Branan Riley"
|
31
|
-
},
|
32
|
-
{
|
33
|
-
"github": "Iristyle",
|
34
|
-
"name": "Ethan J. Brown"
|
35
|
-
},
|
36
|
-
{
|
37
|
-
"github": "er0ck",
|
38
|
-
"email": "eric.thompson@puppet.com",
|
39
|
-
"name": "Eric Thompson"
|
40
|
-
},
|
41
|
-
{
|
42
|
-
"github": "jtappa",
|
43
|
-
"email": "jorie@puppet.com",
|
44
|
-
"name": "Jorie Tappa"
|
45
|
-
}
|
46
|
-
]
|
47
|
-
}
|