openvox 9.0.0.pre.beta1 → 9.0.0.pre.beta2
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 +4 -4
- data/CHANGELOG.md +60 -2
- data/CODE_OF_CONDUCT.md +1 -1
- data/Gemfile +3 -3
- data/README.md +6 -6
- data/Rakefile +3 -3
- data/conf/environment.conf +2 -2
- data/conf/fileserver.conf +3 -3
- data/conf/puppet.conf +4 -4
- data/examples/enc/regexp_nodes/regexp_nodes.rb +2 -2
- data/examples/hiera/README.md +1 -1
- data/examples/nagios/check_puppet.rb +1 -1
- data/ext/README.md +3 -3
- data/ext/hiera/hiera.yaml +1 -1
- data/ext/project_data.yaml +1 -1
- data/ext/redhat/client.sysconfig +1 -0
- data/ext/solaris/smf/puppet.xml +2 -2
- data/ext/windows/puppet_interactive.bat +1 -1
- data/ext/windows/service/daemon.rb +5 -5
- data/lib/hiera/puppet_function.rb +1 -2
- data/lib/hiera_puppet.rb +1 -1
- data/lib/puppet/agent/disabler.rb +3 -3
- data/lib/puppet/agent/locker.rb +1 -1
- data/lib/puppet/agent.rb +2 -2
- data/lib/puppet/application/agent.rb +33 -35
- data/lib/puppet/application/apply.rb +7 -7
- data/lib/puppet/application/describe.rb +3 -3
- data/lib/puppet/application/device.rb +1 -1
- data/lib/puppet/application/doc.rb +5 -7
- data/lib/puppet/application/facts.rb +1 -1
- data/lib/puppet/application/filebucket.rb +5 -5
- data/lib/puppet/application/lookup.rb +8 -8
- data/lib/puppet/application/resource.rb +5 -5
- data/lib/puppet/application/script.rb +3 -3
- data/lib/puppet/application/ssl.rb +4 -4
- data/lib/puppet/application_support.rb +2 -2
- data/lib/puppet/configurer.rb +13 -7
- data/lib/puppet/confine/variable.rb +2 -2
- data/lib/puppet/context.rb +1 -1
- data/lib/puppet/data_binding.rb +1 -1
- data/lib/puppet/defaults.rb +156 -194
- data/lib/puppet/error.rb +1 -1
- data/lib/puppet/etc.rb +4 -4
- data/lib/puppet/face/catalog/select.rb +3 -3
- data/lib/puppet/face/catalog.rb +4 -4
- data/lib/puppet/face/config.rb +6 -6
- data/lib/puppet/face/facts.rb +6 -6
- data/lib/puppet/face/help/man.erb +3 -3
- data/lib/puppet/face/node/clean.rb +3 -3
- data/lib/puppet/face/node.rb +2 -2
- data/lib/puppet/face/plugin.rb +4 -4
- data/lib/puppet/functions/all.rb +4 -4
- data/lib/puppet/functions/any.rb +4 -4
- data/lib/puppet/functions/assert_type.rb +5 -5
- data/lib/puppet/functions/defined.rb +1 -1
- data/lib/puppet/functions/each.rb +11 -11
- data/lib/puppet/functions/epp.rb +5 -5
- data/lib/puppet/functions/eyaml_lookup_key.rb +1 -1
- data/lib/puppet/functions/filter.rb +5 -5
- data/lib/puppet/functions/find_file.rb +1 -1
- data/lib/puppet/functions/hiera.rb +4 -4
- data/lib/puppet/functions/hiera_array.rb +5 -5
- data/lib/puppet/functions/hiera_hash.rb +5 -5
- data/lib/puppet/functions/hiera_include.rb +6 -6
- data/lib/puppet/functions/hocon_data.rb +1 -1
- data/lib/puppet/functions/include.rb +1 -1
- data/lib/puppet/functions/index.rb +3 -3
- data/lib/puppet/functions/inline_epp.rb +6 -6
- data/lib/puppet/functions/json_data.rb +1 -1
- data/lib/puppet/functions/lest.rb +1 -1
- data/lib/puppet/functions/lookup.rb +14 -14
- data/lib/puppet/functions/map.rb +5 -5
- data/lib/puppet/functions/reduce.rb +6 -6
- data/lib/puppet/functions/reverse_each.rb +5 -5
- data/lib/puppet/functions/scanf.rb +1 -1
- data/lib/puppet/functions/step.rb +5 -5
- data/lib/puppet/functions/then.rb +1 -1
- data/lib/puppet/functions/tree_each.rb +3 -3
- data/lib/puppet/functions/versioncmp.rb +1 -1
- data/lib/puppet/functions/with.rb +2 -2
- data/lib/puppet/functions/yaml_data.rb +1 -1
- data/lib/puppet/gettext/config.rb +5 -5
- data/lib/puppet/gettext/module_translations.rb +1 -1
- data/lib/puppet/graph/simple_graph.rb +0 -1
- data/lib/puppet/http/client.rb +5 -5
- data/lib/puppet/http/factory.rb +1 -1
- data/lib/puppet/http/resolver/server_list.rb +2 -2
- data/lib/puppet/http/service/compiler.rb +3 -3
- data/lib/puppet/http/service/file_server.rb +1 -1
- data/lib/puppet/http/service.rb +1 -1
- data/lib/puppet/http/session.rb +1 -1
- data/lib/puppet/http.rb +1 -1
- data/lib/puppet/indirector/catalog/compiler.rb +2 -2
- data/lib/puppet/indirector/data_binding/hiera.rb +93 -2
- data/lib/puppet/indirector/face.rb +4 -4
- data/lib/puppet/indirector/facts/facter.rb +7 -7
- data/lib/puppet/indirector/file_bucket_file/file.rb +2 -2
- data/lib/puppet/indirector/file_bucket_file/rest.rb +7 -3
- data/lib/puppet/indirector/file_content/file_server.rb +1 -1
- data/lib/puppet/indirector/file_metadata/file_server.rb +1 -1
- data/lib/puppet/indirector/node/exec.rb +1 -1
- data/lib/puppet/indirector/node/rest.rb +1 -1
- data/lib/puppet/indirector/report/processor.rb +1 -1
- data/lib/puppet/indirector.rb +1 -1
- data/lib/puppet/interface/documentation.rb +1 -1
- data/lib/puppet/interface/face_collection.rb +1 -1
- data/lib/puppet/interface/option.rb +2 -2
- data/lib/puppet/module/task.rb +1 -1
- data/lib/puppet/module_tool/applications/application.rb +1 -1
- data/lib/puppet/module_tool/metadata.rb +1 -2
- data/lib/puppet/module_tool.rb +1 -1
- data/lib/puppet/network/authorization.rb +1 -1
- data/lib/puppet/network/http/api.rb +2 -2
- data/lib/puppet/network/http/connection.rb +2 -2
- data/lib/puppet/node/environment.rb +6 -6
- data/lib/puppet/node.rb +2 -2
- data/lib/puppet/pal/catalog_compiler.rb +1 -1
- data/lib/puppet/pal/pal_impl.rb +1 -1
- data/lib/puppet/parser/compiler.rb +1 -1
- data/lib/puppet/parser/functions/assert_type.rb +5 -5
- data/lib/puppet/parser/functions/create_resources.rb +1 -1
- data/lib/puppet/parser/functions/defined.rb +1 -1
- data/lib/puppet/parser/functions/digest.rb +1 -1
- data/lib/puppet/parser/functions/each.rb +11 -11
- data/lib/puppet/parser/functions/epp.rb +5 -5
- data/lib/puppet/parser/functions/filter.rb +5 -5
- data/lib/puppet/parser/functions/generate.rb +1 -1
- data/lib/puppet/parser/functions/hiera.rb +3 -3
- data/lib/puppet/parser/functions/hiera_array.rb +4 -4
- data/lib/puppet/parser/functions/hiera_hash.rb +4 -4
- data/lib/puppet/parser/functions/hiera_include.rb +5 -5
- data/lib/puppet/parser/functions/include.rb +1 -1
- data/lib/puppet/parser/functions/inline_epp.rb +6 -6
- data/lib/puppet/parser/functions/inline_template.rb +1 -1
- data/lib/puppet/parser/functions/lest.rb +1 -1
- data/lib/puppet/parser/functions/lookup.rb +14 -14
- data/lib/puppet/parser/functions/map.rb +5 -5
- data/lib/puppet/parser/functions/reduce.rb +7 -7
- data/lib/puppet/parser/functions/reverse_each.rb +5 -5
- data/lib/puppet/parser/functions/scanf.rb +1 -1
- data/lib/puppet/parser/functions/step.rb +5 -5
- data/lib/puppet/parser/functions/then.rb +1 -1
- data/lib/puppet/parser/functions/versioncmp.rb +1 -1
- data/lib/puppet/parser/functions/with.rb +1 -1
- data/lib/puppet/parser/functions.rb +3 -3
- data/lib/puppet/parser/scope.rb +1 -1
- data/lib/puppet/plugins/syntax_checkers.rb +2 -2
- data/lib/puppet/plugins.rb +1 -1
- data/lib/puppet/pops/evaluator/collectors/exported_collector.rb +1 -1
- data/lib/puppet/pops/evaluator/deferred_resolver.rb +4 -1
- data/lib/puppet/pops/issues.rb +3 -3
- data/lib/puppet/pops/loader/module_loaders.rb +4 -4
- data/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb +1 -1
- data/lib/puppet/pops/loaders.rb +4 -4
- data/lib/puppet/pops/lookup/lookup_adapter.rb +7 -66
- data/lib/puppet/pops/model/factory.rb +5 -5
- data/lib/puppet/pops/resource/resource_type_impl.rb +1 -1
- data/lib/puppet/pops/types/iterable.rb +1 -1
- data/lib/puppet/property/keyvalue.rb +3 -3
- data/lib/puppet/provider/group/aix.rb +2 -2
- data/lib/puppet/provider/nameservice/directoryservice.rb +2 -2
- data/lib/puppet/provider/package/aix.rb +1 -1
- data/lib/puppet/provider/package/apt.rb +2 -2
- data/lib/puppet/provider/package/aptitude.rb +0 -1
- data/lib/puppet/provider/package/dnfmodule.rb +1 -1
- data/lib/puppet/provider/package/nim.rb +1 -1
- data/lib/puppet/provider/package/pacman.rb +1 -2
- data/lib/puppet/provider/package/pip.rb +1 -1
- data/lib/puppet/provider/package/pip2.rb +1 -1
- data/lib/puppet/provider/package/pip3.rb +1 -1
- data/lib/puppet/provider/package/pkgdmg.rb +2 -2
- data/lib/puppet/provider/package/puppet_gem.rb +2 -2
- data/lib/puppet/provider/package/puppetserver_gem.rb +1 -1
- data/lib/puppet/provider/package/windows.rb +1 -1
- data/lib/puppet/provider/service/freebsd.rb +1 -1
- data/lib/puppet/provider/service/init.rb +5 -5
- data/lib/puppet/provider/service/launchd.rb +2 -2
- data/lib/puppet/provider/service/smf.rb +1 -1
- data/lib/puppet/provider/service/upstart.rb +2 -2
- data/lib/puppet/provider/user/aix.rb +3 -3
- data/lib/puppet/provider/user/directoryservice.rb +9 -9
- data/lib/puppet/provider/user/pw.rb +3 -3
- data/lib/puppet/provider.rb +1 -1
- data/lib/puppet/reference/configuration.rb +6 -13
- data/lib/puppet/reference/function.rb +4 -4
- data/lib/puppet/reference/indirection.rb +2 -2
- data/lib/puppet/reference/metaparameter.rb +3 -3
- data/lib/puppet/reference/providers.rb +3 -3
- data/lib/puppet/reference/report.rb +4 -4
- data/lib/puppet/reference/type.rb +2 -2
- data/lib/puppet/relationship.rb +1 -1
- data/lib/puppet/reports/http.rb +4 -4
- data/lib/puppet/reports.rb +1 -1
- data/lib/puppet/resource/catalog.rb +4 -4
- data/lib/puppet/settings/base_setting.rb +2 -3
- data/lib/puppet/settings/config_file.rb +3 -3
- data/lib/puppet/settings/environment_conf.rb +3 -11
- data/lib/puppet/settings.rb +10 -10
- data/lib/puppet/ssl/certificate_request.rb +1 -1
- data/lib/puppet/ssl/oids.rb +1 -1
- data/lib/puppet/ssl/openssl_loader.rb +1 -1
- data/lib/puppet/ssl/ssl_provider.rb +5 -5
- data/lib/puppet/ssl/state_machine.rb +3 -3
- data/lib/puppet/syntax_checkers.rb +1 -1
- data/lib/puppet/transaction/report.rb +3 -3
- data/lib/puppet/transaction.rb +0 -1
- data/lib/puppet/type/exec.rb +20 -20
- data/lib/puppet/type/file/content.rb +10 -37
- data/lib/puppet/type/file/ensure.rb +4 -4
- data/lib/puppet/type/file/mode.rb +4 -4
- data/lib/puppet/type/file/selcontext.rb +2 -2
- data/lib/puppet/type/file/source.rb +18 -18
- data/lib/puppet/type/file.rb +22 -15
- data/lib/puppet/type/filebucket.rb +22 -8
- data/lib/puppet/type/group.rb +5 -5
- data/lib/puppet/type/notify.rb +1 -1
- data/lib/puppet/type/package.rb +4 -4
- data/lib/puppet/type/schedule.rb +11 -11
- data/lib/puppet/type/service.rb +8 -8
- data/lib/puppet/type/stage.rb +1 -1
- data/lib/puppet/type/user.rb +19 -21
- data/lib/puppet/type/whit.rb +2 -2
- data/lib/puppet/type.rb +27 -27
- data/lib/puppet/util/character_encoding.rb +3 -3
- data/lib/puppet/util/command_line.rb +1 -1
- data/lib/puppet/util/execution.rb +1 -1
- data/lib/puppet/util/filetype.rb +6 -6
- data/lib/puppet/util/log.rb +2 -2
- data/lib/puppet/util/logging.rb +3 -3
- data/lib/puppet/util/plist.rb +1 -1
- data/lib/puppet/util/profiler/around_profiler.rb +1 -1
- data/lib/puppet/util/profiler.rb +1 -1
- data/lib/puppet/util/rdoc.rb +6 -3
- data/lib/puppet/util/selinux.rb +5 -5
- data/lib/puppet/util/tag_set.rb +0 -1
- data/lib/puppet/util/windows/adsi.rb +1 -1
- data/lib/puppet/util/windows/com.rb +2 -2
- data/lib/puppet/util/windows/eventlog.rb +6 -6
- data/lib/puppet/util/windows/file.rb +2 -2
- data/lib/puppet/util/windows/security.rb +3 -3
- data/lib/puppet/util.rb +2 -2
- data/lib/puppet/version.rb +8 -8
- data/lib/puppet/x509/cert_provider.rb +1 -1
- data/lib/puppet.rb +5 -5
- data/locales/config.yaml +3 -3
- data/locales/puppet.pot +462 -464
- data/man/man5/puppet.conf.5 +122 -146
- data/man/man8/puppet-agent.8 +25 -25
- data/man/man8/puppet-apply.8 +6 -6
- data/man/man8/puppet-catalog.8 +11 -11
- data/man/man8/puppet-config.8 +7 -7
- data/man/man8/puppet-describe.8 +3 -3
- data/man/man8/puppet-device.8 +2 -2
- data/man/man8/puppet-doc.8 +5 -5
- data/man/man8/puppet-epp.8 +3 -3
- data/man/man8/puppet-facts.8 +11 -11
- data/man/man8/puppet-filebucket.8 +5 -5
- data/man/man8/puppet-generate.8 +3 -3
- data/man/man8/puppet-help.8 +3 -3
- data/man/man8/puppet-lookup.8 +8 -8
- data/man/man8/puppet-module.8 +7 -7
- data/man/man8/puppet-node.8 +11 -45
- data/man/man8/puppet-parser.8 +3 -3
- data/man/man8/puppet-plugin.8 +7 -7
- data/man/man8/puppet-report.8 +6 -6
- data/man/man8/puppet-resource.8 +5 -5
- data/man/man8/puppet-script.8 +3 -3
- data/man/man8/puppet-ssl.8 +21 -23
- data/man/man8/puppet.8 +2 -2
- metadata +3 -6
- data/lib/puppet/indirector/hiera.rb +0 -101
- data/lib/puppet/util/rdoc/generators/puppet_generator.rb +0 -902
- data/lib/puppet/util/rdoc/generators/template/puppet/puppet.rb +0 -1068
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed28d3fffefb78cd48456950fec1e0ffa693ecf8c4fb2824984173ce29f86851
|
|
4
|
+
data.tar.gz: 0130557c8b8cd1b805c53395857d5bc87b2386dea0ff8ed9eee404502b25bbd8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d62217611432c108a6f4d44204e1e4d2509fc25e8dceef9fd1fef955838c2ca1c8def8c744491295f401ed90c5a7d806c5d5242bb1832ff237c0ca4112060f43
|
|
7
|
+
data.tar.gz: '095767b88adee1ebdcc4054af43c9ff8053d20910de818b5505266061cd3f8d129d8e2a8cdb7200b34042b352694293bfa58d3c7621fdb1efafeda8c7f4d8d11'
|
data/CHANGELOG.md
CHANGED
|
@@ -2,9 +2,67 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## [9.0.0-
|
|
5
|
+
## [9.0.0-beta2](https://github.com/openvoxproject/openvox/tree/9.0.0-beta2) (2026-08-05)
|
|
6
6
|
|
|
7
|
-
[Full Changelog](https://github.com/openvoxproject/openvox/compare/
|
|
7
|
+
[Full Changelog](https://github.com/openvoxproject/openvox/compare/9.0.0-beta1...9.0.0-beta2)
|
|
8
|
+
|
|
9
|
+
**Breaking changes:**
|
|
10
|
+
|
|
11
|
+
- puppet-runtime: update 2026.07.16.1-\>2026.08.04.1 / removed java keystores [\#593](https://github.com/OpenVoxProject/openvox/pull/593) ([bastelfreak](https://github.com/bastelfreak))
|
|
12
|
+
- Remove zone\_core module [\#592](https://github.com/OpenVoxProject/openvox/pull/592) ([bastelfreak](https://github.com/bastelfreak))
|
|
13
|
+
- Update vendored modules to latest versions [\#589](https://github.com/OpenVoxProject/openvox/pull/589) ([bastelfreak](https://github.com/bastelfreak))
|
|
14
|
+
- Change reports default from "store" to "none" [\#583](https://github.com/OpenVoxProject/openvox/pull/583) ([Sharpie](https://github.com/Sharpie))
|
|
15
|
+
- openfact: Require 6.x [\#577](https://github.com/OpenVoxProject/openvox/pull/577) ([bastelfreak](https://github.com/bastelfreak))
|
|
16
|
+
- Promote openfact 6.0.0 into main [\#575](https://github.com/OpenVoxProject/openvox/pull/575) ([OpenVoxProjectBot](https://github.com/OpenVoxProjectBot))
|
|
17
|
+
- Remove data-binding settings [\#385](https://github.com/OpenVoxProject/openvox/pull/385) ([silug](https://github.com/silug))
|
|
18
|
+
- Remove hiera indirector [\#384](https://github.com/OpenVoxProject/openvox/pull/384) ([silug](https://github.com/silug))
|
|
19
|
+
- Allow file content that looks like a checksum. [\#170](https://github.com/OpenVoxProject/openvox/pull/170) ([jeremie-pierson](https://github.com/jeremie-pierson))
|
|
20
|
+
|
|
21
|
+
**Implemented enhancements:**
|
|
22
|
+
|
|
23
|
+
- Replace deprecated `--force-yes` `apt-get` option [\#560](https://github.com/OpenVoxProject/openvox/pull/560) ([jay7x](https://github.com/jay7x))
|
|
24
|
+
- Update CFPropertyList requirement from \>= 3.0.6, \< 4 to ~\> 4.0 [\#509](https://github.com/OpenVoxProject/openvox/pull/509) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
25
|
+
|
|
26
|
+
**Fixed bugs:**
|
|
27
|
+
|
|
28
|
+
- \[Bug\]: Centralized filebucket not working properly [\#367](https://github.com/OpenVoxProject/openvox/issues/367)
|
|
29
|
+
- \[Bug\]: lines in file resource content looking like a checksum throws an error [\#169](https://github.com/OpenVoxProject/openvox/issues/169)
|
|
30
|
+
- fix: Pacman provider uses unrecognized option '--update' [\#451](https://github.com/OpenVoxProject/openvox/pull/451) ([fmichea](https://github.com/fmichea))
|
|
31
|
+
- Fix filebucket REST terminus to support request.server [\#368](https://github.com/OpenVoxProject/openvox/pull/368) ([mdechiaro](https://github.com/mdechiaro))
|
|
32
|
+
- fix: `Deferred` resolution of Puppet-language functions \(e.g. mocks in tests\) failing due to lack of `:global_scope` [\#350](https://github.com/OpenVoxProject/openvox/pull/350) ([griggi-ws](https://github.com/griggi-ws))
|
|
33
|
+
|
|
34
|
+
**Closed issues:**
|
|
35
|
+
|
|
36
|
+
- Packaged java module in spec is referencing old artifacts [\#563](https://github.com/OpenVoxProject/openvox/issues/563)
|
|
37
|
+
- \[Deprecation\] Replace `puppet master` Terminology in User-Facing Docs/Help [\#347](https://github.com/OpenVoxProject/openvox/issues/347)
|
|
38
|
+
- \[Deprecation\] Data-Binding Settings [\#338](https://github.com/OpenVoxProject/openvox/issues/338)
|
|
39
|
+
- \[Deprecation\] `file { content => <checksum> }` Filebucket Retrieval Behavior [\#335](https://github.com/OpenVoxProject/openvox/issues/335)
|
|
40
|
+
- \[Deprecation\] `Puppet::Indirector::Hiera` Terminus [\#332](https://github.com/OpenVoxProject/openvox/issues/332)
|
|
41
|
+
|
|
42
|
+
**Merged pull requests:**
|
|
43
|
+
|
|
44
|
+
- Remove setup.ps1 Cygwin setup script [\#591](https://github.com/OpenVoxProject/openvox/pull/591) ([Sharpie](https://github.com/Sharpie))
|
|
45
|
+
- Remove unloadable CC-BY-1.0 RDoc template and generator [\#587](https://github.com/OpenVoxProject/openvox/pull/587) ([silug](https://github.com/silug))
|
|
46
|
+
- Document cross-node read exposure of a central filebucket [\#585](https://github.com/OpenVoxProject/openvox/pull/585) ([silug](https://github.com/silug))
|
|
47
|
+
- Update JRuby 10.1 test cell to 10.1.1.0 [\#584](https://github.com/OpenVoxProject/openvox/pull/584) ([Sharpie](https://github.com/Sharpie))
|
|
48
|
+
- Add man page validation to CI [\#580](https://github.com/OpenVoxProject/openvox/pull/580) ([silug](https://github.com/silug))
|
|
49
|
+
- Address review feedback from \#530 [\#579](https://github.com/OpenVoxProject/openvox/pull/579) ([silug](https://github.com/silug))
|
|
50
|
+
- Remove bashism from pre/post-install scripts [\#573](https://github.com/OpenVoxProject/openvox/pull/573) ([sideeffect42](https://github.com/sideeffect42))
|
|
51
|
+
- Update URLs in default config files [\#572](https://github.com/OpenVoxProject/openvox/pull/572) ([jcharaoui](https://github.com/jcharaoui))
|
|
52
|
+
- Improve manpage reproducibility [\#570](https://github.com/OpenVoxProject/openvox/pull/570) ([jcharaoui](https://github.com/jcharaoui))
|
|
53
|
+
- Fix a small typo in the markdown docs [\#569](https://github.com/OpenVoxProject/openvox/pull/569) ([jcharaoui](https://github.com/jcharaoui))
|
|
54
|
+
- Validate that the catalog is compiled for this node [\#568](https://github.com/OpenVoxProject/openvox/pull/568) ([binford2k](https://github.com/binford2k))
|
|
55
|
+
- User resource pw provider: Switches a couple commands to the safer array syntax [\#567](https://github.com/OpenVoxProject/openvox/pull/567) ([binford2k](https://github.com/binford2k))
|
|
56
|
+
- Generate module tarball fixtures at test time [\#566](https://github.com/OpenVoxProject/openvox/pull/566) ([silug](https://github.com/silug))
|
|
57
|
+
- Set `PUPPET_EXTRA_OPTS` variable to empty [\#559](https://github.com/OpenVoxProject/openvox/pull/559) ([corporate-gadfly](https://github.com/corporate-gadfly))
|
|
58
|
+
- Promote puppet-runtime 2026.07.16.1 into main [\#553](https://github.com/OpenVoxProject/openvox/pull/553) ([OpenVoxProjectBot](https://github.com/OpenVoxProjectBot))
|
|
59
|
+
- Rebrand Puppet -\> OpenVox and fix links [\#530](https://github.com/OpenVoxProject/openvox/pull/530) ([silug](https://github.com/silug))
|
|
60
|
+
- Fix "translates custom oids to their long name" test [\#488](https://github.com/OpenVoxProject/openvox/pull/488) ([anthonyryan1](https://github.com/anthonyryan1))
|
|
61
|
+
- Replace 'master' terminology with 'server' [\#348](https://github.com/OpenVoxProject/openvox/pull/348) ([silug](https://github.com/silug))
|
|
62
|
+
|
|
63
|
+
## [9.0.0-beta1](https://github.com/openvoxproject/openvox/tree/9.0.0-beta1) (2026-07-15)
|
|
64
|
+
|
|
65
|
+
[Full Changelog](https://github.com/openvoxproject/openvox/compare/8.28.1...9.0.0-beta1)
|
|
8
66
|
|
|
9
67
|
**Breaking changes:**
|
|
10
68
|
|
data/CODE_OF_CONDUCT.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Community Guidelines and Code of Conduct
|
|
2
2
|
|
|
3
|
-
We want to keep the
|
|
3
|
+
We want to keep the OpenVox communities awesome, and we need your help to keep it
|
|
4
4
|
that way. While we have specific guidelines for various tools (see links below),
|
|
5
5
|
in general, you should:
|
|
6
6
|
|
data/Gemfile
CHANGED
|
@@ -16,7 +16,7 @@ end
|
|
|
16
16
|
# the runtime_dependencies in openvox.gemspec match the runtime dependencies here
|
|
17
17
|
# (like openfact, semantic_puppet, and puppet-resource_api)
|
|
18
18
|
|
|
19
|
-
gem "openfact", *location_for(ENV['OPENFACT_LOCATION'] || ["~>
|
|
19
|
+
gem "openfact", *location_for(ENV['OPENFACT_LOCATION'] || ["~> 6.0"])
|
|
20
20
|
gem "semantic_puppet", *location_for(ENV['SEMANTIC_PUPPET_LOCATION'] || ["~> 1.0"])
|
|
21
21
|
gem "puppet-resource_api", *location_for(ENV['RESOURCE_API_LOCATION'] || ["~> 2.0"])
|
|
22
22
|
# Need to update the openssl gem on MacOS to avoid SSL errors.
|
|
@@ -39,7 +39,7 @@ group(:features) do
|
|
|
39
39
|
# gem 'ruby-ldap', '~> 0.9', require: false, platforms: [:ruby]
|
|
40
40
|
gem 'openvoxserver-ca', '~> 3.0', require: false
|
|
41
41
|
gem 'syslog', '>= 0.1.1', '< 1', require: false, platforms: [:ruby]
|
|
42
|
-
gem 'CFPropertyList',
|
|
42
|
+
gem 'CFPropertyList', '~> 4.0', require: false
|
|
43
43
|
end
|
|
44
44
|
|
|
45
45
|
group(:test) do
|
|
@@ -56,7 +56,7 @@ group(:test) do
|
|
|
56
56
|
gem 'webrick', '~> 1.7', require: false
|
|
57
57
|
gem 'yard', require: false
|
|
58
58
|
|
|
59
|
-
gem 'rubocop', '~> 1.
|
|
59
|
+
gem 'rubocop', '~> 1.88.2', require: false, platforms: [:ruby]
|
|
60
60
|
gem 'rubocop-i18n', '~> 3.0', require: false, platforms: [:ruby]
|
|
61
61
|
gem 'rubocop-performance', '~> 1.0', require: false, platforms: [:ruby]
|
|
62
62
|
gem 'rubocop-rake', '~> 0.6', require: false, platforms: [:ruby]
|
data/README.md
CHANGED
|
@@ -7,13 +7,13 @@ configurations) based on a centralized specification.
|
|
|
7
7
|
## Documentation
|
|
8
8
|
|
|
9
9
|
As of now, OpenVox is effectively the same as the original Puppet™️ packages, aside from some minor build pipeline changes and package renaming.
|
|
10
|
-
This means that aside from the installation,
|
|
10
|
+
This means that aside from the installation, most existing Puppet™️ docs and tutorials will still be applicable.
|
|
11
11
|
As the OpenVox project matures, we will create more documentation, guides, and tutorials.
|
|
12
|
-
|
|
12
|
+
Documentation is available at [the OpenVox documentation site](https://docs.openvoxproject.org/).
|
|
13
13
|
|
|
14
14
|
### HTTP API
|
|
15
15
|
|
|
16
|
-
[HTTP API Index](https://
|
|
16
|
+
[HTTP API Index](https://docs.openvoxproject.org/openvox/latest/http_api/http_api_index.html)
|
|
17
17
|
|
|
18
18
|
## Installation
|
|
19
19
|
|
|
@@ -21,7 +21,7 @@ To install OpenVox,
|
|
|
21
21
|
[see our installation guide.](https://voxpupuli.org/openvox/install/) and [quickstart page](https://voxpupuli.org/openvox/quickstart/).
|
|
22
22
|
|
|
23
23
|
If you need to run OpenVox from source as a tester or developer,
|
|
24
|
-
see the [Quick Start to Developing on
|
|
24
|
+
see the [Quick Start to Developing on OpenVox](docs/quickstart.md) guide.
|
|
25
25
|
|
|
26
26
|
## Developing and Contributing
|
|
27
27
|
|
|
@@ -31,7 +31,7 @@ Guide](docs/quickstart.md). Once you are up and running, take a look at the
|
|
|
31
31
|
[Contribution Documents](https://github.com/OpenVoxProject/.github/blob/main/CONTRIBUTING.md) to see how to get your changes merged
|
|
32
32
|
in.
|
|
33
33
|
|
|
34
|
-
For more complete docs on developing with
|
|
34
|
+
For more complete docs on developing with OpenVox, take a look at the
|
|
35
35
|
rest of the [developer documents](docs/index.md).
|
|
36
36
|
|
|
37
37
|
## Licensing
|
|
@@ -57,7 +57,7 @@ Bug fixes and ongoing development will occur in minor releases for the current
|
|
|
57
57
|
major version. Security fixes will be backported to a previous major version on
|
|
58
58
|
a best-effort basis, until the previous major version is no longer maintained.
|
|
59
59
|
|
|
60
|
-
For example: If a security vulnerability is discovered in
|
|
60
|
+
For example: If a security vulnerability is discovered in OpenVox 8.1.1, we
|
|
61
61
|
would fix it in the 8 series, most likely as 8.1.2. Maintainers would then make
|
|
62
62
|
a best effort to backport that fix onto earlier releases that haven't reached
|
|
63
63
|
their respective end-of-life dates.
|
data/Rakefile
CHANGED
|
@@ -32,7 +32,7 @@ end
|
|
|
32
32
|
|
|
33
33
|
Dir.glob(File.join('tasks/**/*.rake')).each { |file| load file }
|
|
34
34
|
|
|
35
|
-
###
|
|
35
|
+
### Packaging stuff ###
|
|
36
36
|
|
|
37
37
|
if Rake.application.top_level_tasks.grep(/^(pl:|package:)/).any?
|
|
38
38
|
begin
|
|
@@ -57,7 +57,7 @@ task :default do
|
|
|
57
57
|
end
|
|
58
58
|
|
|
59
59
|
namespace :pl_ci do
|
|
60
|
-
desc 'Build
|
|
60
|
+
desc 'Build openvox gems'
|
|
61
61
|
task :gem_build, [:gemspec] do |t, args|
|
|
62
62
|
args.with_defaults(gemspec: 'openvox.gemspec')
|
|
63
63
|
stdout, stderr, status = Open3.capture3(<<~END)
|
|
@@ -74,7 +74,7 @@ namespace :pl_ci do
|
|
|
74
74
|
end
|
|
75
75
|
end
|
|
76
76
|
|
|
77
|
-
desc 'build the nightly
|
|
77
|
+
desc 'build the nightly openvox gems'
|
|
78
78
|
task :nightly_gem_build do
|
|
79
79
|
# this is taken from `rake package:nightly_gem`
|
|
80
80
|
extended_dot_version = %x{git describe --tags --dirty --abbrev=7}.chomp.tr('-', '.')
|
data/conf/environment.conf
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Each environment can have an environment.conf file. Its settings will only
|
|
2
2
|
# affect its own environment. See docs for more info:
|
|
3
|
-
# https://
|
|
3
|
+
# https://docs.openvoxproject.org/openvox/latest/config_file_environment.html
|
|
4
4
|
|
|
5
5
|
# Any unspecified settings use default values; some of those defaults are based
|
|
6
6
|
# on puppet.conf settings.
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
# modulepath = ./modules:$basemodulepath
|
|
14
14
|
# manifest = (default_manifest from puppet.conf, which defaults to ./manifests)
|
|
15
|
-
# config_version = (no script;
|
|
15
|
+
# config_version = (no script; OpenVox will use the time the catalog was compiled)
|
|
16
16
|
# environment_timeout = (environment_timeout from puppet.conf, which defaults to 0)
|
|
17
17
|
# Note: unless you have a specific reason, we recommend only setting
|
|
18
18
|
# environment_timeout in puppet.conf.
|
data/conf/fileserver.conf
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# fileserver.conf
|
|
2
2
|
|
|
3
|
-
#
|
|
3
|
+
# OpenVox automatically serves PLUGINS and FILES FROM MODULES: anything in
|
|
4
4
|
# <module name>/files/<file name> is available to authenticated nodes at
|
|
5
5
|
# puppet:///modules/<module name>/<file name>. You do not need to edit this
|
|
6
6
|
# file to enable this.
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
|
|
29
29
|
# The ability to set permissions - for example, using the allow, allow_ip, or
|
|
30
30
|
# deny directives - has been removed from fileserver.conf. Instead, you can
|
|
31
|
-
# control file access in
|
|
32
|
-
# at https://
|
|
31
|
+
# control file access in OpenVox Server's auth.conf file. See the documentation
|
|
32
|
+
# at https://docs.openvoxproject.org/openvox-server/latest/config_file_auth.html.
|
data/conf/puppet.conf
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This file can be used to override the default puppet settings.
|
|
2
2
|
# See the following links for more details on what settings are available:
|
|
3
|
-
# - https://
|
|
4
|
-
# - https://
|
|
5
|
-
# - https://
|
|
6
|
-
# - https://
|
|
3
|
+
# - https://docs.openvoxproject.org/openvox/latest/config_important_settings.html
|
|
4
|
+
# - https://docs.openvoxproject.org/openvox/latest/config_about_settings.html
|
|
5
|
+
# - https://docs.openvoxproject.org/openvox/latest/config_file_main.html
|
|
6
|
+
# - https://docs.openvoxproject.org/openvox/latest/configuration.html
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# = Synopsis
|
|
4
4
|
# This is an external node classifier script, after
|
|
5
|
-
# https://
|
|
5
|
+
# https://docs.openvoxproject.org/openvox/latest/lang_write_functions_in_puppet.html
|
|
6
6
|
#
|
|
7
7
|
# = Usage
|
|
8
8
|
# regexp_nodes.rb <host>
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
# finds. Each file's contents are a regexp-per-line which, if they match the
|
|
14
14
|
# hostname passed to the program as ARGV[0], sets a class, parameter value
|
|
15
15
|
# or environment named the same thing as the file itself. At the end, the
|
|
16
|
-
# resultant data structure is returned back to the
|
|
16
|
+
# resultant data structure is returned back to the OpenVox server process as
|
|
17
17
|
# yaml.
|
|
18
18
|
#
|
|
19
19
|
# = Caveats
|
data/examples/hiera/README.md
CHANGED
|
@@ -11,7 +11,7 @@ This demo consists of:
|
|
|
11
11
|
Below various usage scenarios can be tested using this module.
|
|
12
12
|
|
|
13
13
|
The examples below assume you:
|
|
14
|
-
- Have the
|
|
14
|
+
- Have the openvox-agent already installed
|
|
15
15
|
- You have this repository cloned from github
|
|
16
16
|
- Are running these commands from within the *examples/hiera* directory as cwd.
|
|
17
17
|
|
|
@@ -19,7 +19,7 @@ class CheckPuppet
|
|
|
19
19
|
OptionParser.new do |o|
|
|
20
20
|
o.set_summary_indent(' ')
|
|
21
21
|
o.banner = "Usage: #{script_name} [OPTIONS]"
|
|
22
|
-
o.define_head "The check_puppet Nagios plug-in checks that specified
|
|
22
|
+
o.define_head "The check_puppet Nagios plug-in checks that specified OpenVox process is running and the state file is no older than specified interval."
|
|
23
23
|
o.separator ""
|
|
24
24
|
o.separator "Mandatory arguments to long options are mandatory for short options too."
|
|
25
25
|
|
data/ext/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# `ext/` directory details
|
|
2
|
-
This directory contains files used internally when packaging [
|
|
2
|
+
This directory contains files used internally when packaging [openvox](https://github.com/OpenVoxProject/openvox) and [openvox-agent](https://github.com/OpenVoxProject/openvox-agent)
|
|
3
3
|
What follows is a more detailed description of each directory/file:
|
|
4
4
|
* `debian/` - init scripts for puppet (used for Debian-based platforms that do not support systemd)
|
|
5
5
|
* `hiera/hiera.yaml` - installed to `$codedir/environments/production`as a default Hiera configuration file
|
|
@@ -9,5 +9,5 @@ What follows is a more detailed description of each directory/file:
|
|
|
9
9
|
* `suse/client.init` - init script for puppet (used for SUSE-based platforms that do not support systemd)
|
|
10
10
|
* `systemd/puppet.service` - systemd unit file for puppet
|
|
11
11
|
* `windows/` - the puppet daemon for Windows, and other useful `.bat` helper wrappers
|
|
12
|
-
* `build_defaults.yaml` - information pertaining to the
|
|
13
|
-
* `project_data.yaml` - information used when packaging the
|
|
12
|
+
* `build_defaults.yaml` - information pertaining to the legacy build automation
|
|
13
|
+
* `project_data.yaml` - information used when packaging the openvox gem
|
data/ext/hiera/hiera.yaml
CHANGED
|
@@ -4,7 +4,7 @@ defaults:
|
|
|
4
4
|
# The default value for "datadir" is "data" under the same directory as the hiera.yaml
|
|
5
5
|
# file (this file)
|
|
6
6
|
# When specifying a datadir, make sure the directory exists.
|
|
7
|
-
# See https://
|
|
7
|
+
# See https://docs.openvoxproject.org/openvox/latest/environments_about.html for further details on environments.
|
|
8
8
|
# datadir: data
|
|
9
9
|
# data_hash: yaml_data
|
|
10
10
|
hierarchy:
|
data/ext/project_data.yaml
CHANGED
data/ext/redhat/client.sysconfig
CHANGED
data/ext/solaris/smf/puppet.xml
CHANGED
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
|
|
35
35
|
<template>
|
|
36
36
|
<common_name>
|
|
37
|
-
<loctext xml:lang="C">
|
|
37
|
+
<loctext xml:lang="C">OpenVox Agent Daemon</loctext>
|
|
38
38
|
</common_name>
|
|
39
39
|
<documentation>
|
|
40
40
|
<manpage title="puppet" section="1"/>
|
|
41
|
-
<doc_link name="
|
|
41
|
+
<doc_link name="voxpupuli.org" uri="https://voxpupuli.org/openvox/"/>
|
|
42
42
|
</documentation>
|
|
43
43
|
</template>
|
|
44
44
|
</service>
|
|
@@ -5,7 +5,7 @@ require 'fileutils'
|
|
|
5
5
|
require 'puppet/util/windows/daemon'
|
|
6
6
|
|
|
7
7
|
# This file defines utilities for logging to eventlog. While it lives inside
|
|
8
|
-
#
|
|
8
|
+
# OpenVox, it is completely independent and loads no other parts of OpenVox, so we
|
|
9
9
|
# can safely require *just* it.
|
|
10
10
|
require 'puppet/util/windows/eventlog'
|
|
11
11
|
|
|
@@ -83,7 +83,7 @@ class WindowsDaemon < Puppet::Util::Windows::Daemon
|
|
|
83
83
|
pid = Process.create(:command_line => "#{ruby_puppet_cmd} agent --onetime #{args}", :creation_flags => CREATE_NEW_CONSOLE).process_id
|
|
84
84
|
service.log_debug("Process created: #{pid}")
|
|
85
85
|
else
|
|
86
|
-
service.log_debug("Service is paused. Not invoking
|
|
86
|
+
service.log_debug("Service is paused. Not invoking OpenVox agent")
|
|
87
87
|
end
|
|
88
88
|
|
|
89
89
|
service.log_debug("Service worker thread waiting for #{runinterval} seconds")
|
|
@@ -131,7 +131,7 @@ class WindowsDaemon < Puppet::Util::Windows::Daemon
|
|
|
131
131
|
if LEVELS.index(level) >= @loglevel
|
|
132
132
|
if @LOG_TO_FILE
|
|
133
133
|
# without this change its possible that we get Encoding errors trying to write UTF-8 messages in current codepage
|
|
134
|
-
File.open(LOG_FILE, 'a:UTF-8') { |f| f.puts("#{Time.now}
|
|
134
|
+
File.open(LOG_FILE, 'a:UTF-8') { |f| f.puts("#{Time.now} OpenVox (#{level}): #{msg}") }
|
|
135
135
|
end
|
|
136
136
|
|
|
137
137
|
native_type, native_id = Puppet::Util::Windows::EventLog.to_native(level)
|
|
@@ -157,8 +157,8 @@ class WindowsDaemon < Puppet::Util::Windows::Daemon
|
|
|
157
157
|
|
|
158
158
|
# Parses runinterval.
|
|
159
159
|
#
|
|
160
|
-
# @param puppet_path [String] The file path for the
|
|
161
|
-
# @return runinterval [Integer] How often to do
|
|
160
|
+
# @param puppet_path [String] The file path for the puppet executable.
|
|
161
|
+
# @return runinterval [Integer] How often to do an OpenVox run, in seconds.
|
|
162
162
|
def parse_runinterval(puppet_path)
|
|
163
163
|
begin
|
|
164
164
|
runinterval = %x(#{puppet_path} config --section agent --log_level notice print runinterval).chomp
|
|
@@ -64,8 +64,7 @@ class Hiera::PuppetFunction < Puppet::Functions::InternalFunction
|
|
|
64
64
|
unless Puppet[:strict] == :off
|
|
65
65
|
# TRANSLATORS 'lookup' is a puppet function and should not be translated
|
|
66
66
|
message = _("The function '%{class_name}' is deprecated in favor of using 'lookup'.") % { class_name: self.class.name }
|
|
67
|
-
message += ' ' + _("See https://
|
|
68
|
-
{ minor_version: Puppet.minor_version }
|
|
67
|
+
message += ' ' + _("See https://docs.openvoxproject.org/openvox/latest/deprecated_language.html")
|
|
69
68
|
Puppet.warn_once('deprecations', self.class.name, message)
|
|
70
69
|
end
|
|
71
70
|
lookup_invocation = Puppet::Pops::Lookup::Invocation.new(scope, {}, {})
|
data/lib/hiera_puppet.rb
CHANGED
|
@@ -8,7 +8,7 @@ require_relative '../../puppet/util/json_lockfile'
|
|
|
8
8
|
# "has the puppet agent been administratively disabled?"
|
|
9
9
|
#
|
|
10
10
|
# The implementation involves writing a lockfile with JSON
|
|
11
|
-
# contents, and is considered part of the public
|
|
11
|
+
# contents, and is considered part of the public OpenVox API
|
|
12
12
|
# because it used by external tools such as mcollective.
|
|
13
13
|
#
|
|
14
14
|
# For more information, please see docs on the website.
|
|
@@ -18,14 +18,14 @@ module Puppet::Agent::Disabler
|
|
|
18
18
|
|
|
19
19
|
# Let the daemon run again, freely in the filesystem.
|
|
20
20
|
def enable
|
|
21
|
-
Puppet.notice _("Enabling
|
|
21
|
+
Puppet.notice _("Enabling OpenVox.")
|
|
22
22
|
disable_lockfile.unlock
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
# Stop the daemon from making any catalog runs.
|
|
26
26
|
def disable(msg = nil)
|
|
27
27
|
data = {}
|
|
28
|
-
Puppet.notice _("Disabling
|
|
28
|
+
Puppet.notice _("Disabling OpenVox.")
|
|
29
29
|
unless msg.nil?
|
|
30
30
|
data[DISABLED_MESSAGE_JSON_KEY] = msg
|
|
31
31
|
end
|
data/lib/puppet/agent/locker.rb
CHANGED
|
@@ -10,7 +10,7 @@ require_relative '../../puppet/error'
|
|
|
10
10
|
#
|
|
11
11
|
# The implementation involves writing a lockfile whose contents are simply the
|
|
12
12
|
# PID of the running agent process. This is considered part of the public
|
|
13
|
-
#
|
|
13
|
+
# OpenVox API because it used by external tools such as mcollective.
|
|
14
14
|
#
|
|
15
15
|
# For more information, please see docs on the website.
|
|
16
16
|
# http://links.puppet.com/agent_lockfiles
|
data/lib/puppet/agent.rb
CHANGED
|
@@ -78,7 +78,7 @@ class Puppet::Agent
|
|
|
78
78
|
# NOTE: Timeout is pretty heinous as the location in which it
|
|
79
79
|
# throws an error is entirely unpredictable, which means that
|
|
80
80
|
# it can interrupt code blocks that perform cleanup or enforce
|
|
81
|
-
# sanity. The only thing
|
|
81
|
+
# sanity. The only thing an OpenVox agent should do after this
|
|
82
82
|
# error is thrown is die with as much dignity as possible.
|
|
83
83
|
Timeout.timeout(Puppet[:runtimeout], RunTimeoutError) do
|
|
84
84
|
Puppet.override(ssl_context: ssl_context) do
|
|
@@ -98,7 +98,7 @@ class Puppet::Agent
|
|
|
98
98
|
Puppet.notice _("Exiting now because the maxwaitforlock timeout has been exceeded.")
|
|
99
99
|
nil
|
|
100
100
|
else
|
|
101
|
-
Puppet.info _("Another
|
|
101
|
+
Puppet.info _("Another OpenVox instance is already running; --waitforlock flag used, waiting for running instance to finish.")
|
|
102
102
|
Puppet.info _("Will try again in %{time} seconds.") % { time: Puppet[:waitforlock] }
|
|
103
103
|
sleep Puppet[:waitforlock]
|
|
104
104
|
retry
|