puppet 5.5.10-universal-darwin → 5.5.12-universal-darwin
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: universal-darwin
|
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
|
@@ -113,12 +113,12 @@ executables:
|
|
113
113
|
extensions: []
|
114
114
|
extra_rdoc_files: []
|
115
115
|
files:
|
116
|
+
- CODEOWNERS
|
116
117
|
- COMMITTERS.md
|
117
118
|
- CONTRIBUTING.md
|
118
119
|
- Gemfile
|
119
120
|
- Gemfile.lock
|
120
121
|
- LICENSE
|
121
|
-
- MAINTAINERS
|
122
122
|
- README.md
|
123
123
|
- Rakefile
|
124
124
|
- bin/puppet
|
@@ -311,6 +311,7 @@ files:
|
|
311
311
|
- lib/puppet/configurer/plugin_handler.rb
|
312
312
|
- lib/puppet/confine.rb
|
313
313
|
- lib/puppet/confine/any.rb
|
314
|
+
- lib/puppet/confine/boolean.rb
|
314
315
|
- lib/puppet/confine/exists.rb
|
315
316
|
- lib/puppet/confine/false.rb
|
316
317
|
- lib/puppet/confine/feature.rb
|
@@ -1852,6 +1853,7 @@ files:
|
|
1852
1853
|
- spec/integration/parser/script_compiler_spec.rb
|
1853
1854
|
- spec/integration/parser/undef_param_spec.rb
|
1854
1855
|
- spec/integration/provider/cron/crontab_spec.rb
|
1856
|
+
- spec/integration/provider/file/windows_spec.rb
|
1855
1857
|
- spec/integration/provider/mailalias/aliases_spec.rb
|
1856
1858
|
- spec/integration/provider/mount_spec.rb
|
1857
1859
|
- spec/integration/provider/service/init_spec.rb
|
@@ -3163,6 +3165,7 @@ test_files:
|
|
3163
3165
|
- spec/integration/parser/script_compiler_spec.rb
|
3164
3166
|
- spec/integration/parser/undef_param_spec.rb
|
3165
3167
|
- spec/integration/provider/cron/crontab_spec.rb
|
3168
|
+
- spec/integration/provider/file/windows_spec.rb
|
3166
3169
|
- spec/integration/provider/mailalias/aliases_spec.rb
|
3167
3170
|
- spec/integration/provider/mount_spec.rb
|
3168
3171
|
- 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
|
-
}
|