puppet 6.20.0-x64-mingw32 → 7.4.0-x64-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/Gemfile +1 -4
- data/Gemfile.lock +13 -13
- data/README.md +1 -1
- data/conf/fileserver.conf +5 -10
- data/ext/build_defaults.yaml +1 -2
- data/ext/osx/file_mapping.yaml +0 -5
- data/ext/project_data.yaml +2 -14
- data/ext/redhat/puppet.spec.erb +0 -1
- data/ext/windows/service/daemon.rb +6 -5
- data/install.rb +21 -17
- data/lib/puppet.rb +11 -20
- data/lib/puppet/application.rb +172 -98
- data/lib/puppet/application/device.rb +100 -104
- data/lib/puppet/application/filebucket.rb +13 -9
- data/lib/puppet/application/ssl.rb +1 -1
- data/lib/puppet/configurer.rb +27 -29
- data/lib/puppet/configurer/plugin_handler.rb +21 -19
- data/lib/puppet/defaults.rb +57 -162
- data/lib/puppet/environments.rb +8 -23
- data/lib/puppet/face/facts.rb +73 -49
- data/lib/puppet/face/help.rb +1 -1
- data/lib/puppet/face/node/clean.rb +8 -0
- data/lib/puppet/face/plugin.rb +5 -8
- data/lib/puppet/ffi/windows.rb +12 -0
- data/lib/puppet/ffi/windows/api_types.rb +311 -0
- data/lib/puppet/ffi/windows/constants.rb +404 -0
- data/lib/puppet/ffi/windows/functions.rb +628 -0
- data/lib/puppet/ffi/windows/structs.rb +338 -0
- data/lib/puppet/file_serving/configuration.rb +0 -5
- data/lib/puppet/file_serving/configuration/parser.rb +6 -32
- data/lib/puppet/file_serving/http_metadata.rb +1 -1
- data/lib/puppet/file_serving/mount.rb +1 -2
- data/lib/puppet/forge/repository.rb +0 -1
- data/lib/puppet/generate/models/type/type.rb +4 -1
- data/lib/puppet/http.rb +22 -13
- data/lib/puppet/http/client.rb +164 -114
- data/lib/puppet/{network/resolver.rb → http/dns.rb} +2 -2
- data/lib/puppet/http/errors.rb +16 -0
- data/lib/puppet/http/external_client.rb +5 -7
- data/lib/puppet/{network/http → http}/factory.rb +8 -11
- data/lib/puppet/{network/http → http}/pool.rb +61 -26
- data/lib/puppet/{network/http/session.rb → http/pool_entry.rb} +2 -3
- data/lib/puppet/http/proxy.rb +137 -0
- data/lib/puppet/http/redirector.rb +4 -12
- data/lib/puppet/http/resolver.rb +5 -15
- data/lib/puppet/http/resolver/server_list.rb +6 -10
- data/lib/puppet/http/resolver/settings.rb +4 -7
- data/lib/puppet/http/resolver/srv.rb +7 -11
- data/lib/puppet/http/response.rb +36 -54
- data/lib/puppet/http/response_converter.rb +24 -0
- data/lib/puppet/http/response_net_http.rb +42 -0
- data/lib/puppet/http/retry_after_handler.rb +4 -13
- data/lib/puppet/http/service.rb +12 -26
- data/lib/puppet/http/service/ca.rb +11 -22
- data/lib/puppet/http/service/compiler.rb +22 -69
- data/lib/puppet/http/service/file_server.rb +18 -27
- data/lib/puppet/http/service/puppetserver.rb +26 -12
- data/lib/puppet/http/service/report.rb +8 -10
- data/lib/puppet/http/session.rb +11 -20
- data/lib/puppet/{network/http → http}/site.rb +1 -2
- data/lib/puppet/indirector/catalog/rest.rb +2 -4
- data/lib/puppet/indirector/facts/facter.rb +25 -3
- data/lib/puppet/indirector/facts/rest.rb +3 -22
- data/lib/puppet/indirector/file_bucket_file/rest.rb +3 -9
- data/lib/puppet/indirector/file_content/rest.rb +2 -6
- data/lib/puppet/indirector/file_metadata/rest.rb +3 -9
- data/lib/puppet/indirector/file_server.rb +1 -8
- data/lib/puppet/indirector/generic_http.rb +0 -11
- data/lib/puppet/indirector/node/rest.rb +2 -4
- data/lib/puppet/indirector/report/rest.rb +3 -8
- data/lib/puppet/indirector/request.rb +0 -101
- data/lib/puppet/indirector/rest.rb +12 -263
- data/lib/puppet/module_tool/applications.rb +0 -1
- data/lib/puppet/network/authconfig.rb +2 -96
- data/lib/puppet/network/authorization.rb +13 -35
- data/lib/puppet/network/formats.rb +67 -0
- data/lib/puppet/network/http.rb +3 -3
- data/lib/puppet/network/http/api/indirected_routes.rb +2 -20
- data/lib/puppet/network/http/api/master/v3.rb +11 -13
- data/lib/puppet/network/http/connection.rb +247 -316
- data/lib/puppet/network/http/handler.rb +0 -1
- data/lib/puppet/network/http_pool.rb +16 -34
- data/lib/puppet/node.rb +1 -30
- data/lib/puppet/pal/json_catalog_encoder.rb +4 -0
- data/lib/puppet/pal/pal_impl.rb +3 -1
- data/lib/puppet/parser/ast/pops_bridge.rb +0 -38
- data/lib/puppet/parser/compiler.rb +0 -198
- data/lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb +14 -39
- data/lib/puppet/parser/resource.rb +0 -69
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +0 -5
- data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +3 -3
- data/lib/puppet/pops/evaluator/runtime3_support.rb +1 -1
- data/lib/puppet/pops/issues.rb +0 -5
- data/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb +6 -8
- data/lib/puppet/pops/model/ast.pp +0 -42
- data/lib/puppet/pops/model/ast.rb +0 -290
- data/lib/puppet/pops/model/factory.rb +0 -45
- data/lib/puppet/pops/model/model_label_provider.rb +0 -5
- data/lib/puppet/pops/model/model_tree_dumper.rb +0 -22
- data/lib/puppet/pops/model/pn_transformer.rb +0 -16
- data/lib/puppet/pops/parser/egrammar.ra +0 -56
- data/lib/puppet/pops/parser/eparser.rb +1520 -1712
- data/lib/puppet/pops/parser/lexer2.rb +4 -4
- data/lib/puppet/pops/parser/parser_support.rb +0 -5
- data/lib/puppet/pops/resource/resource_type_impl.rb +2 -24
- data/lib/puppet/pops/types/type_calculator.rb +0 -7
- data/lib/puppet/pops/types/type_parser.rb +0 -4
- data/lib/puppet/pops/types/types.rb +0 -1
- data/lib/puppet/pops/validation/checker4_0.rb +9 -37
- data/lib/puppet/pops/validation/tasks_checker.rb +0 -12
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +1 -2
- data/lib/puppet/property/list.rb +1 -1
- data/lib/puppet/provider.rb +0 -13
- data/lib/puppet/provider/group/groupadd.rb +13 -8
- data/lib/puppet/provider/nameservice.rb +0 -18
- data/lib/puppet/provider/package/apt.rb +30 -2
- data/lib/puppet/provider/package/aptitude.rb +6 -0
- data/lib/puppet/provider/package/dpkg.rb +0 -10
- data/lib/puppet/provider/package/gem.rb +23 -3
- data/lib/puppet/provider/package/pip.rb +0 -1
- data/lib/puppet/provider/package/pkg.rb +0 -4
- data/lib/puppet/provider/package/portage.rb +1 -1
- data/lib/puppet/provider/package/puppet_gem.rb +1 -4
- data/lib/puppet/provider/service/debian.rb +2 -0
- data/lib/puppet/provider/service/smf.rb +191 -73
- data/lib/puppet/provider/user/directoryservice.rb +0 -10
- data/lib/puppet/provider/user/useradd.rb +55 -8
- data/lib/puppet/reference/configuration.rb +7 -5
- data/lib/puppet/reference/indirection.rb +1 -1
- data/lib/puppet/resource.rb +1 -89
- data/lib/puppet/resource/catalog.rb +1 -14
- data/lib/puppet/resource/type.rb +3 -119
- data/lib/puppet/resource/type_collection.rb +3 -48
- data/lib/puppet/runtime.rb +1 -2
- data/lib/puppet/settings.rb +45 -33
- data/lib/puppet/settings/integer_setting.rb +17 -0
- data/lib/puppet/settings/port_setting.rb +15 -0
- data/lib/puppet/settings/priority_setting.rb +5 -4
- data/lib/puppet/ssl.rb +10 -6
- data/lib/puppet/ssl/base.rb +3 -5
- data/lib/puppet/ssl/certificate.rb +0 -6
- data/lib/puppet/ssl/certificate_request.rb +1 -12
- data/lib/puppet/ssl/certificate_signer.rb +6 -0
- data/lib/puppet/ssl/oids.rb +3 -1
- data/lib/puppet/ssl/ssl_provider.rb +17 -0
- data/lib/puppet/ssl/state_machine.rb +3 -1
- data/lib/puppet/ssl/verifier.rb +2 -0
- data/lib/puppet/test/test_helper.rb +1 -3
- data/lib/puppet/transaction.rb +1 -7
- data/lib/puppet/transaction/report.rb +2 -4
- data/lib/puppet/type.rb +0 -76
- data/lib/puppet/type/file.rb +5 -7
- data/lib/puppet/type/file/checksum.rb +1 -1
- data/lib/puppet/type/file/source.rb +1 -1
- data/lib/puppet/type/filebucket.rb +3 -3
- data/lib/puppet/type/package.rb +8 -16
- data/lib/puppet/type/user.rb +1 -1
- data/lib/puppet/util/execution.rb +0 -11
- data/lib/puppet/util/http_proxy.rb +2 -215
- data/lib/puppet/util/monkey_patches.rb +0 -46
- data/lib/puppet/util/rdoc.rb +0 -7
- data/lib/puppet/util/retry_action.rb +1 -1
- data/lib/puppet/util/run_mode.rb +9 -1
- data/lib/puppet/util/windows.rb +3 -8
- data/lib/puppet/util/windows/daemon.rb +360 -0
- data/lib/puppet/util/windows/error.rb +1 -0
- data/lib/puppet/util/windows/eventlog.rb +4 -9
- data/lib/puppet/util/windows/file.rb +8 -242
- data/lib/puppet/util/windows/monkey_patches/process.rb +414 -0
- data/lib/puppet/util/windows/process.rb +4 -226
- data/lib/puppet/util/windows/service.rb +9 -460
- data/lib/puppet/util/windows/string.rb +12 -13
- data/lib/puppet/util/yaml.rb +0 -22
- data/lib/puppet/vendor/require_vendored.rb +0 -1
- data/lib/puppet/version.rb +1 -1
- data/lib/puppet/x509.rb +5 -1
- data/lib/puppet/x509/cert_provider.rb +29 -1
- data/locales/puppet.pot +521 -1226
- data/man/man5/puppet.conf.5 +35 -95
- 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 +57 -36
- data/man/man8/puppet-filebucket.8 +4 -4
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-lookup.8 +1 -1
- data/man/man8/puppet-module.8 +1 -58
- 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.8 +2 -2
- data/spec/fixtures/unit/provider/service/smf/{svcs.out → svcs_instances.out} +0 -0
- data/spec/integration/application/agent_spec.rb +57 -11
- data/spec/integration/application/apply_spec.rb +1 -1
- data/spec/integration/application/filebucket_spec.rb +16 -16
- data/spec/integration/application/help_spec.rb +2 -0
- data/spec/integration/application/plugin_spec.rb +23 -1
- data/spec/integration/defaults_spec.rb +7 -3
- data/spec/integration/indirector/file_content/file_server_spec.rb +0 -2
- data/spec/integration/indirector/file_metadata/file_server_spec.rb +0 -2
- data/spec/integration/network/http_pool_spec.rb +3 -21
- data/spec/integration/parser/catalog_spec.rb +0 -38
- data/spec/integration/parser/node_spec.rb +0 -9
- data/spec/integration/parser/pcore_resource_spec.rb +0 -37
- data/spec/integration/type/file_spec.rb +5 -4
- data/spec/integration/util/windows/monkey_patches/process_spec.rb +231 -0
- data/spec/integration/util/windows/security_spec.rb +1 -1
- data/spec/lib/puppet_spec/puppetserver.rb +1 -1
- data/spec/lib/puppet_spec/settings.rb +1 -0
- data/spec/spec_helper.rb +2 -0
- data/spec/unit/agent_spec.rb +0 -2
- data/spec/unit/application/facts_spec.rb +86 -0
- data/spec/unit/application/filebucket_spec.rb +41 -39
- data/spec/unit/application/ssl_spec.rb +2 -2
- data/spec/unit/certificate_factory_spec.rb +1 -1
- data/spec/unit/configurer/downloader_spec.rb +6 -2
- data/spec/unit/configurer/plugin_handler_spec.rb +56 -18
- data/spec/unit/configurer_spec.rb +12 -9
- data/spec/unit/context/trusted_information_spec.rb +2 -6
- data/spec/unit/defaults_spec.rb +22 -47
- data/spec/unit/environments_spec.rb +0 -3
- data/spec/unit/face/facts_spec.rb +4 -0
- data/spec/unit/face/node_spec.rb +14 -2
- data/spec/unit/face/plugin_spec.rb +73 -33
- data/spec/unit/file_bucket/file_spec.rb +1 -1
- data/spec/unit/file_serving/configuration/parser_spec.rb +22 -18
- data/spec/unit/file_serving/configuration_spec.rb +6 -12
- data/spec/unit/functions/camelcase_spec.rb +1 -1
- data/spec/unit/functions/capitalize_spec.rb +1 -1
- data/spec/unit/functions/downcase_spec.rb +1 -1
- data/spec/unit/functions/upcase_spec.rb +1 -1
- data/spec/unit/http/client_spec.rb +7 -8
- data/spec/unit/{network/resolver_spec.rb → http/dns_spec.rb} +3 -3
- data/spec/unit/http/external_client_spec.rb +4 -4
- data/spec/unit/{network/http → http}/factory_spec.rb +5 -11
- data/spec/unit/{network/http/session_spec.rb → http/pool_entry_spec.rb} +3 -3
- data/spec/unit/{network/http → http}/pool_spec.rb +12 -17
- data/spec/unit/{util/http_proxy_spec.rb → http/proxy_spec.rb} +2 -69
- data/spec/unit/http/resolver_spec.rb +13 -13
- data/spec/unit/http/service/compiler_spec.rb +0 -62
- data/spec/unit/http/service/file_server_spec.rb +3 -3
- data/spec/unit/http/service/puppetserver_spec.rb +34 -4
- data/spec/unit/http/service_spec.rb +0 -1
- data/spec/unit/http/session_spec.rb +16 -14
- data/spec/unit/{network/http → http}/site_spec.rb +3 -3
- data/spec/unit/indirector/facts/facter_spec.rb +113 -0
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +5 -3
- data/spec/unit/indirector/file_content/rest_spec.rb +0 -4
- data/spec/unit/indirector/file_metadata/rest_spec.rb +0 -4
- data/spec/unit/indirector/file_server_spec.rb +1 -15
- data/spec/unit/indirector/report/rest_spec.rb +2 -17
- data/spec/unit/indirector/request_spec.rb +0 -264
- data/spec/unit/indirector/rest_spec.rb +98 -752
- data/spec/unit/network/authconfig_spec.rb +2 -129
- data/spec/unit/network/authorization_spec.rb +2 -55
- data/spec/unit/network/formats_spec.rb +45 -4
- data/spec/unit/network/http/api/indirected_routes_spec.rb +1 -92
- data/spec/unit/network/http/api/master/v3_spec.rb +28 -7
- data/spec/unit/network/http/api_spec.rb +10 -0
- data/spec/unit/network/http/connection_spec.rb +19 -41
- data/spec/unit/network/http/handler_spec.rb +0 -1
- data/spec/unit/network/http_pool_spec.rb +0 -4
- data/spec/unit/node/environment_spec.rb +33 -21
- data/spec/unit/node_spec.rb +2 -54
- data/spec/unit/parser/functions/create_resources_spec.rb +2 -20
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +4 -7
- data/spec/unit/pops/loaders/loaders_spec.rb +6 -21
- data/spec/unit/pops/parser/parse_application_spec.rb +4 -22
- data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +0 -1
- data/spec/unit/pops/parser/parse_capabilities_spec.rb +8 -21
- data/spec/unit/pops/parser/parse_site_spec.rb +20 -24
- data/spec/unit/pops/resource/resource_type_impl_spec.rb +0 -71
- data/spec/unit/pops/serialization/to_from_hr_spec.rb +1 -1
- data/spec/unit/pops/types/type_calculator_spec.rb +6 -6
- data/spec/unit/pops/types/type_factory_spec.rb +1 -1
- data/spec/unit/pops/validator/validator_spec.rb +61 -46
- data/spec/unit/pops/visitor_spec.rb +1 -1
- data/spec/unit/provider/group/groupadd_spec.rb +5 -2
- data/spec/unit/provider/nameservice_spec.rb +0 -57
- data/spec/unit/provider/package/apt_spec.rb +24 -15
- data/spec/unit/provider/package/aptitude_spec.rb +1 -1
- data/spec/unit/provider/package/dpkg_spec.rb +0 -48
- data/spec/unit/provider/package/gem_spec.rb +32 -0
- data/spec/unit/provider/package/puppet_gem_spec.rb +3 -2
- data/spec/unit/provider/service/smf_spec.rb +401 -165
- data/spec/unit/provider/service/windows_spec.rb +0 -1
- data/spec/unit/provider/user/useradd_spec.rb +55 -3
- data/spec/unit/provider_spec.rb +0 -12
- data/spec/unit/resource/type_collection_spec.rb +2 -22
- data/spec/unit/resource_spec.rb +0 -56
- data/spec/unit/settings/http_extra_headers_spec.rb +2 -4
- data/spec/unit/settings/integer_setting_spec.rb +42 -0
- data/spec/unit/settings/port_setting_spec.rb +31 -0
- data/spec/unit/settings/priority_setting_spec.rb +4 -4
- data/spec/unit/settings_spec.rb +17 -0
- data/spec/unit/ssl/base_spec.rb +36 -3
- data/spec/unit/ssl/certificate_request_spec.rb +19 -55
- data/spec/unit/ssl/certificate_spec.rb +2 -11
- data/spec/unit/ssl/state_machine_spec.rb +0 -1
- data/spec/unit/ssl/verifier_spec.rb +0 -21
- data/spec/unit/transaction/report_spec.rb +0 -2
- data/spec/unit/transaction/resource_harness_spec.rb +2 -2
- data/spec/unit/transaction_spec.rb +45 -79
- data/spec/unit/type/file/checksum_spec.rb +6 -6
- data/spec/unit/type/file/content_spec.rb +1 -1
- data/spec/unit/type/file/ensure_spec.rb +1 -1
- data/spec/unit/type/file/mode_spec.rb +1 -1
- data/spec/unit/type/file/source_spec.rb +0 -1
- data/spec/unit/type/file_spec.rb +12 -6
- data/spec/unit/type/package_spec.rb +1 -1
- data/spec/unit/type_spec.rb +20 -0
- data/spec/unit/util/backups_spec.rb +0 -2
- data/spec/unit/util/execution_spec.rb +0 -29
- data/spec/unit/util/monkey_patches_spec.rb +0 -6
- data/spec/unit/util/run_mode_spec.rb +21 -121
- data/spec/unit/util/windows/string_spec.rb +1 -3
- data/spec/unit/util/yaml_spec.rb +0 -54
- data/spec/unit/util_spec.rb +0 -18
- metadata +48 -219
- data/conf/auth.conf +0 -150
- data/lib/puppet/application/cert.rb +0 -76
- data/lib/puppet/application/key.rb +0 -4
- data/lib/puppet/application/man.rb +0 -4
- data/lib/puppet/application/status.rb +0 -4
- data/lib/puppet/face/key.rb +0 -16
- data/lib/puppet/face/man.rb +0 -145
- data/lib/puppet/face/module/build.rb +0 -14
- data/lib/puppet/face/module/generate.rb +0 -14
- data/lib/puppet/face/module/search.rb +0 -103
- data/lib/puppet/face/status.rb +0 -51
- data/lib/puppet/indirector/certificate/file.rb +0 -9
- data/lib/puppet/indirector/certificate/rest.rb +0 -18
- data/lib/puppet/indirector/certificate_request/file.rb +0 -9
- data/lib/puppet/indirector/certificate_request/memory.rb +0 -7
- data/lib/puppet/indirector/certificate_request/rest.rb +0 -11
- data/lib/puppet/indirector/file_content/http.rb +0 -22
- data/lib/puppet/indirector/key/file.rb +0 -46
- data/lib/puppet/indirector/key/memory.rb +0 -7
- data/lib/puppet/indirector/ssl_file.rb +0 -162
- data/lib/puppet/indirector/status.rb +0 -3
- data/lib/puppet/indirector/status/local.rb +0 -12
- data/lib/puppet/indirector/status/rest.rb +0 -27
- data/lib/puppet/module_tool/applications/searcher.rb +0 -29
- data/lib/puppet/network/auth_config_parser.rb +0 -90
- data/lib/puppet/network/authstore.rb +0 -283
- data/lib/puppet/network/http/api/master/v3/authorization.rb +0 -18
- data/lib/puppet/network/http/api/master/v3/environment.rb +0 -88
- data/lib/puppet/network/http/base_pool.rb +0 -36
- data/lib/puppet/network/http/compression.rb +0 -127
- data/lib/puppet/network/http/connection_adapter.rb +0 -184
- data/lib/puppet/network/http/nocache_pool.rb +0 -28
- data/lib/puppet/network/rest_controller.rb +0 -2
- data/lib/puppet/network/rights.rb +0 -210
- data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +0 -66
- data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +0 -22
- data/lib/puppet/parser/environment_compiler.rb +0 -202
- data/lib/puppet/pops/types/enumeration.rb +0 -16
- data/lib/puppet/resource/capability_finder.rb +0 -154
- data/lib/puppet/rest/errors.rb +0 -15
- data/lib/puppet/rest/response.rb +0 -35
- data/lib/puppet/rest/route.rb +0 -85
- data/lib/puppet/rest/routes.rb +0 -135
- data/lib/puppet/ssl/host.rb +0 -505
- data/lib/puppet/ssl/key.rb +0 -61
- data/lib/puppet/ssl/validator.rb +0 -61
- data/lib/puppet/ssl/validator/default_validator.rb +0 -209
- data/lib/puppet/ssl/validator/no_validator.rb +0 -22
- data/lib/puppet/ssl/verifier_adapter.rb +0 -58
- data/lib/puppet/status.rb +0 -40
- data/lib/puppet/util/connection.rb +0 -88
- data/lib/puppet/util/fact_dif.rb +0 -62
- data/lib/puppet/util/ssl.rb +0 -83
- data/lib/puppet/util/windows/api_types.rb +0 -309
- data/lib/puppet/util/windows/monkey_patches/dir.rb +0 -40
- data/lib/puppet/vendor/load_pathspec.rb +0 -1
- data/lib/puppet/vendor/pathspec/CHANGELOG.md +0 -2
- data/lib/puppet/vendor/pathspec/LICENSE +0 -201
- data/lib/puppet/vendor/pathspec/PUPPET_README.md +0 -6
- data/lib/puppet/vendor/pathspec/README.md +0 -53
- data/lib/puppet/vendor/pathspec/lib/pathspec.rb +0 -122
- data/lib/puppet/vendor/pathspec/lib/pathspec/gitignorespec.rb +0 -275
- data/lib/puppet/vendor/pathspec/lib/pathspec/regexspec.rb +0 -17
- data/lib/puppet/vendor/pathspec/lib/pathspec/spec.rb +0 -14
- data/man/man8/puppet-key.8 +0 -126
- data/man/man8/puppet-man.8 +0 -76
- data/man/man8/puppet-status.8 +0 -108
- data/spec/integration/network/authconfig_spec.rb +0 -256
- data/spec/integration/util/windows/monkey_patches/dir_spec.rb +0 -11
- data/spec/unit/application/man_spec.rb +0 -52
- data/spec/unit/capability_spec.rb +0 -414
- data/spec/unit/face/key_spec.rb +0 -9
- data/spec/unit/face/module/search_spec.rb +0 -231
- data/spec/unit/face/status_spec.rb +0 -9
- data/spec/unit/indirector/certificate/file_spec.rb +0 -14
- data/spec/unit/indirector/certificate/rest_spec.rb +0 -61
- data/spec/unit/indirector/certificate_request/file_spec.rb +0 -14
- data/spec/unit/indirector/certificate_request/rest_spec.rb +0 -25
- data/spec/unit/indirector/key/file_spec.rb +0 -78
- data/spec/unit/indirector/ssl_file_spec.rb +0 -305
- data/spec/unit/indirector/status/local_spec.rb +0 -10
- data/spec/unit/indirector/status/rest_spec.rb +0 -50
- data/spec/unit/module_tool/applications/searcher_spec.rb +0 -38
- data/spec/unit/network/auth_config_parser_spec.rb +0 -115
- data/spec/unit/network/authstore_spec.rb +0 -422
- data/spec/unit/network/http/api/master/v3/authorization_spec.rb +0 -57
- data/spec/unit/network/http/api/master/v3/environment_spec.rb +0 -185
- data/spec/unit/network/http/compression_spec.rb +0 -240
- data/spec/unit/network/http/nocache_pool_spec.rb +0 -64
- data/spec/unit/network/http_spec.rb +0 -9
- data/spec/unit/network/rights_spec.rb +0 -439
- data/spec/unit/parser/environment_compiler_spec.rb +0 -730
- data/spec/unit/pops/types/enumeration_spec.rb +0 -51
- data/spec/unit/resource/capability_finder_spec.rb +0 -148
- data/spec/unit/rest/route_spec.rb +0 -132
- data/spec/unit/ssl/host_spec.rb +0 -645
- data/spec/unit/ssl/key_spec.rb +0 -173
- data/spec/unit/ssl/validator_spec.rb +0 -278
- data/spec/unit/status_spec.rb +0 -45
- data/spec/unit/util/ssl_spec.rb +0 -91
@@ -4,7 +4,6 @@
|
|
4
4
|
require 'puppet/util/package/version/pip'
|
5
5
|
require 'puppet/util/package/version/range'
|
6
6
|
require 'puppet/provider/package_targetable'
|
7
|
-
require 'puppet/util/http_proxy'
|
8
7
|
|
9
8
|
Puppet::Type.type(:package).provide :pip, :parent => ::Puppet::Provider::Package::Targetable do
|
10
9
|
|
@@ -112,7 +112,7 @@ Puppet::Type.type(:package).provide :portage, :parent => Puppet::Provider::Packa
|
|
112
112
|
# do the search
|
113
113
|
should = @resource[:ensure]
|
114
114
|
case should
|
115
|
-
# The terms present, absent, purged,
|
115
|
+
# The terms present, absent, purged, installed, latest in :ensure
|
116
116
|
# resolve as Symbols, and we do not need specific package version in this case
|
117
117
|
when true, false, Symbol
|
118
118
|
search = @resource[:name]
|
@@ -5,10 +5,7 @@ Puppet::Type.type(:package).provide :puppet_gem, :parent => :gem do
|
|
5
5
|
has_feature :versionable, :install_options, :uninstall_options
|
6
6
|
|
7
7
|
if Puppet::Util::Platform.windows?
|
8
|
-
|
9
|
-
# existed on the system PATH. This means that we do not need to
|
10
|
-
# sort out the absolute path.
|
11
|
-
commands :gemcmd => "gem"
|
8
|
+
commands :gemcmd => File.join(Puppet::Util.get_env('PUPPET_DIR').to_s, 'bin', 'gem.bat')
|
12
9
|
else
|
13
10
|
commands :gemcmd => "/opt/puppetlabs/puppet/bin/gem"
|
14
11
|
end
|
@@ -17,6 +17,8 @@ Puppet::Type.type(:service).provide :debian, :parent => :init do
|
|
17
17
|
commands :invoke_rc => "/usr/sbin/invoke-rc.d"
|
18
18
|
commands :service => "/usr/sbin/service"
|
19
19
|
|
20
|
+
confine :false => Puppet::FileSystem.exist?('/proc/1/comm') && Puppet::FileSystem.read('/proc/1/comm').include?('systemd')
|
21
|
+
|
20
22
|
defaultfor :operatingsystem => :cumuluslinux, :operatingsystemmajrelease => ['1','2']
|
21
23
|
defaultfor :operatingsystem => :debian, :operatingsystemmajrelease => ['5','6','7']
|
22
24
|
defaultfor :operatingsystem => :devuan
|
@@ -5,48 +5,100 @@ Puppet::Type.type(:service).provide :smf, :parent => :base do
|
|
5
5
|
desc <<-EOT
|
6
6
|
Support for Sun's new Service Management Framework.
|
7
7
|
|
8
|
-
|
9
|
-
|
10
|
-
|
8
|
+
When managing the enable property, this provider will try to preserve
|
9
|
+
the previous ensure state per the enableable semantics. On Solaris,
|
10
|
+
enabling a service starts it up while disabling a service stops it. Thus,
|
11
|
+
there's a chance for this provider to execute two operations when managing
|
12
|
+
the enable property. For example, if enable is set to true and the ensure
|
13
|
+
state is stopped, this provider will manage the service using two operations:
|
14
|
+
one to enable the service which will start it up, and another to stop the
|
15
|
+
service (without affecting its enabled status).
|
11
16
|
|
12
17
|
By specifying `manifest => "/path/to/service.xml"`, the SMF manifest will
|
13
18
|
be imported if it does not exist.
|
14
|
-
|
15
19
|
EOT
|
16
20
|
|
17
21
|
defaultfor :osfamily => :solaris
|
18
22
|
|
19
23
|
confine :osfamily => :solaris
|
20
24
|
|
21
|
-
commands :adm => "/usr/sbin/svcadm",
|
22
|
-
|
25
|
+
commands :adm => "/usr/sbin/svcadm",
|
26
|
+
:svcs => "/usr/bin/svcs",
|
27
|
+
:svccfg => "/usr/sbin/svccfg"
|
23
28
|
|
24
29
|
has_feature :refreshable
|
25
30
|
|
26
|
-
def
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
31
|
+
def self.instances
|
32
|
+
service_instances = svcs("-H", "-o", "state,fmri" ).split("\n")
|
33
|
+
|
34
|
+
# Puppet does not manage services in the legacy_run state, so filter those out.
|
35
|
+
service_instances.reject! { |line| line =~ /^legacy_run/ }
|
36
|
+
|
37
|
+
service_instances.collect! do |line|
|
38
|
+
state, fmri = line.split(/\s+/)
|
39
|
+
|
40
|
+
status = case state
|
41
|
+
when /online/; :running
|
42
|
+
when /maintenance/; :maintenance
|
43
|
+
when /degraded/; :degraded
|
44
|
+
else :stopped
|
45
|
+
end
|
46
|
+
new({:name => fmri, :ensure => status})
|
47
|
+
end
|
48
|
+
|
49
|
+
service_instances
|
50
|
+
end
|
51
|
+
|
52
|
+
def initialize(*args)
|
53
|
+
super(*args)
|
54
|
+
|
55
|
+
# This hash contains the properties we need to sync. in our flush method.
|
56
|
+
#
|
57
|
+
# TODO (PUP-9051): Should we use @property_hash here? It seems like
|
58
|
+
# @property_hash should be empty by default and is something we can
|
59
|
+
# control so I think so?
|
60
|
+
@properties_to_sync = {}
|
61
|
+
end
|
62
|
+
|
63
|
+
def service_exists?
|
64
|
+
self.service_fmri
|
65
|
+
true
|
66
|
+
rescue Puppet::ExecutionFailure
|
67
|
+
false
|
68
|
+
end
|
69
|
+
|
70
|
+
def setup_service
|
71
|
+
return unless @resource[:manifest]
|
72
|
+
return if self.service_exists?
|
73
|
+
|
74
|
+
Puppet.notice("Importing #{@resource[:manifest]} for #{@resource[:name]}")
|
75
|
+
svccfg(:import, @resource[:manifest])
|
35
76
|
rescue Puppet::ExecutionFailure => detail
|
36
|
-
|
77
|
+
raise Puppet::Error.new( "Cannot config #{@resource[:name]} to enable it: #{detail}", detail )
|
37
78
|
end
|
38
79
|
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
80
|
+
# Returns the service's FMRI. We fail if multiple FMRIs correspond to
|
81
|
+
# @resource[:name].
|
82
|
+
#
|
83
|
+
# If the service does not exist or we fail to get any FMRIs from svcs,
|
84
|
+
# this method will raise a Puppet::ExecutionFailure
|
85
|
+
def service_fmri
|
86
|
+
return @fmri if @fmri
|
87
|
+
|
88
|
+
# `svcs -l` is better to use because we can detect service instances
|
89
|
+
# that have not yet been activated or enabled (i.e. it lets us detect
|
90
|
+
# services that svcadm has not yet touched). `svcs -H -o fmri` is a bit
|
91
|
+
# more limited.
|
92
|
+
lines = svcs("-l", @resource[:name]).chomp.lines.to_a
|
93
|
+
lines.select! { |line| line =~ /^fmri/ }
|
94
|
+
fmris = lines.map! { |line| line.split(' ')[-1].chomp }
|
95
|
+
unless fmris.length == 1
|
96
|
+
raise Puppet::Error.new(
|
97
|
+
"Failed to get #{@resource[:name]}'s FMRI: The pattern '#{@resource[:name]}' matches multiple FMRIs! These are the FMRIs it matches: #{fmris.join(', ')}"
|
98
|
+
)
|
99
|
+
end
|
100
|
+
|
101
|
+
@fmri = fmris.first
|
50
102
|
end
|
51
103
|
|
52
104
|
# Returns the service's FMRI. We fail if multiple FMRIs correspond to
|
@@ -96,51 +148,50 @@ Puppet::Type.type(:service).provide :smf, :parent => :base do
|
|
96
148
|
end
|
97
149
|
|
98
150
|
def enable
|
99
|
-
|
151
|
+
@properties_to_sync[:enable] = true
|
100
152
|
end
|
101
153
|
|
102
154
|
def enabled?
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
else
|
107
|
-
return :false
|
108
|
-
end
|
155
|
+
return :false unless service_exists?
|
156
|
+
_property, _type, value = svccfg("-s", self.service_fmri, "listprop", "general/enabled").split(' ')
|
157
|
+
value == 'true' ? :true : :false
|
109
158
|
end
|
110
159
|
|
111
160
|
def disable
|
112
|
-
|
161
|
+
@properties_to_sync[:enable] = false
|
113
162
|
end
|
114
163
|
|
115
164
|
def restartcmd
|
116
165
|
if Puppet::Util::Package.versioncmp(Facter.value(:operatingsystemrelease), '11.2') >= 0
|
117
|
-
[command(:adm), :restart, "-s",
|
166
|
+
[command(:adm), :restart, "-s", self.service_fmri]
|
118
167
|
else
|
119
168
|
# Synchronous restart only supported in Solaris 11.2 and above
|
120
|
-
[command(:adm), :restart,
|
169
|
+
[command(:adm), :restart, self.service_fmri]
|
121
170
|
end
|
122
171
|
end
|
123
172
|
|
124
|
-
def
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
173
|
+
def service_states
|
174
|
+
# Gets the current and next state of the service. We have a next state because SMF
|
175
|
+
# manages services asynchronously. If there is no 'next' state, svcs will put a '-'
|
176
|
+
# to indicate as such.
|
177
|
+
current_state, next_state = svcs("-H", "-o", "state,nstate", self.service_fmri).chomp.split(' ')
|
178
|
+
|
179
|
+
{
|
180
|
+
:current => current_state,
|
181
|
+
:next => next_state == "-" ? nil : next_state
|
182
|
+
}
|
132
183
|
end
|
133
184
|
|
134
185
|
# Wait for the service to transition into the specified state before returning.
|
135
186
|
# This is necessary due to the asynchronous nature of SMF services.
|
136
|
-
#
|
187
|
+
# desired_states should include only online, offline, disabled, or uninitialized.
|
137
188
|
# See PUP-5474 for long-term solution to this issue.
|
138
|
-
def wait(*
|
189
|
+
def wait(*desired_states)
|
139
190
|
Timeout.timeout(60) do
|
140
191
|
loop do
|
141
192
|
states = self.service_states
|
142
|
-
break if
|
143
|
-
sleep(1)
|
193
|
+
break if desired_states.include?(states[:current]) && states[:next].nil?
|
194
|
+
Kernel.sleep(1)
|
144
195
|
end
|
145
196
|
end
|
146
197
|
rescue Timeout::Error
|
@@ -148,15 +199,11 @@ Puppet::Type.type(:service).provide :smf, :parent => :base do
|
|
148
199
|
end
|
149
200
|
|
150
201
|
def start
|
151
|
-
|
152
|
-
super
|
153
|
-
self.wait('online')
|
202
|
+
@properties_to_sync[:ensure] = :running
|
154
203
|
end
|
155
204
|
|
156
205
|
def stop
|
157
|
-
|
158
|
-
super
|
159
|
-
self.wait('offline', 'disabled', 'uninitialized')
|
206
|
+
@properties_to_sync[:ensure] = :stopped
|
160
207
|
end
|
161
208
|
|
162
209
|
def restart
|
@@ -165,16 +212,8 @@ Puppet::Type.type(:service).provide :smf, :parent => :base do
|
|
165
212
|
self.wait('online')
|
166
213
|
end
|
167
214
|
|
168
|
-
# Determine the current and next states of a service.
|
169
|
-
def service_states
|
170
|
-
svcs("-H", "-o", "state,nstate", @resource[:name]).chomp.split
|
171
|
-
end
|
172
|
-
|
173
215
|
def status
|
174
|
-
if @resource[:status]
|
175
|
-
super
|
176
|
-
return
|
177
|
-
end
|
216
|
+
return super if @resource[:status]
|
178
217
|
|
179
218
|
begin
|
180
219
|
if supports_incomplete_services?
|
@@ -185,10 +224,10 @@ Puppet::Type.type(:service).provide :smf, :parent => :base do
|
|
185
224
|
end
|
186
225
|
end
|
187
226
|
|
188
|
-
#
|
189
|
-
#
|
190
|
-
states = service_states
|
191
|
-
state = states[
|
227
|
+
# Get the current state and the next state. If there is a next state,
|
228
|
+
# use that for the state comparison.
|
229
|
+
states = self.service_states
|
230
|
+
state = states[:next] || states[:current]
|
192
231
|
rescue Puppet::ExecutionFailure
|
193
232
|
# TODO (PUP-8957): Should this be set back to INFO ?
|
194
233
|
debug "Could not get status on service #{self.name} #{$!}"
|
@@ -197,10 +236,8 @@ Puppet::Type.type(:service).provide :smf, :parent => :base do
|
|
197
236
|
|
198
237
|
case state
|
199
238
|
when "online"
|
200
|
-
#self.warning "matched running #{line.inspect}"
|
201
239
|
return :running
|
202
240
|
when "offline", "disabled", "uninitialized"
|
203
|
-
#self.warning "matched stopped #{line.inspect}"
|
204
241
|
return :stopped
|
205
242
|
when "maintenance"
|
206
243
|
return :maintenance
|
@@ -213,11 +250,92 @@ Puppet::Type.type(:service).provide :smf, :parent => :base do
|
|
213
250
|
raise Puppet::Error,
|
214
251
|
"Unmanageable state '#{state}' on service #{self.name}"
|
215
252
|
end
|
253
|
+
end
|
216
254
|
|
255
|
+
# Helper that encapsulates the clear + svcadm [enable|disable]
|
256
|
+
# logic in one place. Makes it easy to test things out and also
|
257
|
+
# cleans up flush's code.
|
258
|
+
def maybe_clear_service_then_svcadm(cur_state, subcmd, flags)
|
259
|
+
# If the cur_state is maint or degraded, then we need to clear the service
|
260
|
+
# before we enable or disable it.
|
261
|
+
adm('clear', self.service_fmri) if [:maintenance, :degraded].include?(cur_state)
|
262
|
+
adm(subcmd, flags, self.service_fmri)
|
217
263
|
end
|
218
264
|
|
219
|
-
|
220
|
-
|
265
|
+
# The flush method is necessary for the SMF provider because syncing the enable and ensure
|
266
|
+
# properties are not independent operations like they are in most of our other service
|
267
|
+
# providers.
|
268
|
+
def flush
|
269
|
+
# We append the "_" because ensure is a Ruby keyword, and it is good to keep property
|
270
|
+
# variable names consistent with each other.
|
271
|
+
enable_, ensure_ = @properties_to_sync[:enable], @properties_to_sync[:ensure]
|
272
|
+
|
273
|
+
# All of the relevant properties are in sync., so we do not need to do
|
274
|
+
# anything here.
|
275
|
+
return if enable_.nil? and ensure_.nil?
|
276
|
+
|
277
|
+
# Set-up our service so that we know it will exist and so we can collect its fmri. Also
|
278
|
+
# simplifies the code. For a nonexistent service, one of enable or ensure will be true
|
279
|
+
# here (since we're syncing them), so we can fail early if setup_service fails.
|
280
|
+
setup_service
|
281
|
+
fmri = self.service_fmri
|
282
|
+
|
283
|
+
# Useful constants for operations involving multiple states
|
284
|
+
stopped = ['offline', 'disabled', 'uninitialized']
|
285
|
+
|
286
|
+
# Get the current state of the service.
|
287
|
+
cur_state = self.status
|
288
|
+
|
289
|
+
if enable_.nil?
|
290
|
+
# Only ensure needs to be syncd. The -t flag tells svcadm to temporarily
|
291
|
+
# enable/disable the service, where the temporary status is gone upon
|
292
|
+
# reboot. This is exactly what we want, because we do not want to touch
|
293
|
+
# the enable property.
|
294
|
+
if ensure_ == :stopped
|
295
|
+
self.maybe_clear_service_then_svcadm(cur_state, 'disable', '-st')
|
296
|
+
wait(*stopped)
|
297
|
+
else # ensure == :running
|
298
|
+
self.maybe_clear_service_then_svcadm(cur_state, 'enable', '-rst')
|
299
|
+
wait('online')
|
300
|
+
end
|
301
|
+
|
302
|
+
return
|
303
|
+
end
|
304
|
+
|
305
|
+
# Here, enable is being syncd. svcadm starts the service if we enable it, or shuts it down if we
|
306
|
+
# disable it. However, we want our service to be in a final state, which is either whatever the
|
307
|
+
# new ensured value is, or what our original state was prior to enabling it.
|
308
|
+
#
|
309
|
+
# NOTE: Even if you try to set the general/enabled property with svccfg, SMF will still
|
310
|
+
# try to start or shut down the service. Plus, setting general/enabled with svccfg does not
|
311
|
+
# enable the service's dependencies, while svcadm handles this correctly.
|
312
|
+
#
|
313
|
+
# NOTE: We're treating :running and :degraded the same. The reason is b/c an SMF managed service
|
314
|
+
# can only enter the :degraded state if it is online. Since disabling the service also shuts it
|
315
|
+
# off, we cannot set it back to the :degraded state. Thus, it is best to lump :running and :degraded
|
316
|
+
# into the same category to maintain a consistent postcondition on the service's final state when
|
317
|
+
# enabling and disabling it.
|
318
|
+
final_state = ensure_ || cur_state
|
319
|
+
final_state = :running if final_state == :degraded
|
320
|
+
|
321
|
+
if enable_
|
322
|
+
self.maybe_clear_service_then_svcadm(cur_state, 'enable', '-rs')
|
323
|
+
else
|
324
|
+
self.maybe_clear_service_then_svcadm(cur_state, 'disable', '-s')
|
325
|
+
end
|
326
|
+
|
327
|
+
# We're safe with 'whens' here since self.status already errors on any
|
328
|
+
# unmanageable states.
|
329
|
+
case final_state
|
330
|
+
when :running
|
331
|
+
adm('enable', '-rst', fmri) unless enable_
|
332
|
+
wait('online')
|
333
|
+
when :stopped
|
334
|
+
adm('disable', '-st', fmri) if enable_
|
335
|
+
wait(*stopped)
|
336
|
+
when :maintenance
|
337
|
+
adm('mark', '-I', 'maintenance', fmri)
|
338
|
+
wait('maintenance')
|
339
|
+
end
|
221
340
|
end
|
222
341
|
end
|
223
|
-
|
@@ -657,14 +657,4 @@ Puppet::Type.type(:user).provide :directoryservice do
|
|
657
657
|
def write_users_plist_to_disk(users_plist)
|
658
658
|
Puppet::Util::Plist.write_plist_file(users_plist, "#{users_plist_dir}/#{@resource.name}.plist", :binary)
|
659
659
|
end
|
660
|
-
|
661
|
-
# This is a simple wrapper method for writing values to a file.
|
662
|
-
def write_to_file(filename, value)
|
663
|
-
Puppet.deprecation_warning("Puppet::Type.type(:user).provider(:directoryservice).write_to_file is deprecated and will be removed in Puppet 5.")
|
664
|
-
begin
|
665
|
-
File.open(filename, 'w') { |f| f.write(value)}
|
666
|
-
rescue Errno::EACCES => detail
|
667
|
-
raise Puppet::Error, "Could not write to file #{filename}: #{detail}", detail.backtrace
|
668
|
-
end
|
669
|
-
end
|
670
660
|
end
|
@@ -59,23 +59,37 @@ Puppet::Type.type(:user).provide :useradd, :parent => Puppet::Provider::NameServ
|
|
59
59
|
get(:uid)
|
60
60
|
end
|
61
61
|
|
62
|
+
def gid
|
63
|
+
return localgid if @resource.forcelocal?
|
64
|
+
get(:gid)
|
65
|
+
end
|
66
|
+
|
62
67
|
def comment
|
63
68
|
return localcomment if @resource.forcelocal?
|
64
69
|
get(:comment)
|
65
70
|
end
|
66
71
|
|
72
|
+
def groups
|
73
|
+
return localgroups if @resource.forcelocal?
|
74
|
+
super
|
75
|
+
end
|
76
|
+
|
67
77
|
def finduser(key, value)
|
68
|
-
passwd_file =
|
78
|
+
passwd_file = '/etc/passwd'
|
69
79
|
passwd_keys = [:account, :password, :uid, :gid, :gecos, :directory, :shell]
|
70
|
-
|
71
|
-
@
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
80
|
+
|
81
|
+
unless @users
|
82
|
+
unless Puppet::FileSystem.exist?(passwd_file)
|
83
|
+
raise Puppet::Error.new("Forcelocal set for user resource '#{resource[:name]}', but #{passwd_file} does not exist")
|
84
|
+
end
|
85
|
+
|
86
|
+
@users = []
|
87
|
+
Puppet::FileSystem.each_line(passwd_file) do |line|
|
88
|
+
user = line.chomp.split(':')
|
89
|
+
@users << Hash[passwd_keys.zip(user)]
|
76
90
|
end
|
77
91
|
end
|
78
|
-
false
|
92
|
+
@users.find { |param| param[key] == value } || false
|
79
93
|
end
|
80
94
|
|
81
95
|
def local_username
|
@@ -88,16 +102,49 @@ Puppet::Type.type(:user).provide :useradd, :parent => Puppet::Provider::NameServ
|
|
88
102
|
false
|
89
103
|
end
|
90
104
|
|
105
|
+
def localgid
|
106
|
+
user = finduser(:account, resource[:name])
|
107
|
+
return user[:gid] if user
|
108
|
+
false
|
109
|
+
end
|
110
|
+
|
91
111
|
def localcomment
|
92
112
|
user = finduser(:account, resource[:name])
|
93
113
|
user[:gecos]
|
94
114
|
end
|
95
115
|
|
116
|
+
def localgroups
|
117
|
+
@groups_of ||= {}
|
118
|
+
group_file = '/etc/group'
|
119
|
+
user = resource[:name]
|
120
|
+
|
121
|
+
return @groups_of[user] if @groups_of[user]
|
122
|
+
|
123
|
+
@groups_of[user] = []
|
124
|
+
|
125
|
+
unless Puppet::FileSystem.exist?(group_file)
|
126
|
+
raise Puppet::Error.new("Forcelocal set for user resource '#{user}', but #{group_file} does not exist")
|
127
|
+
end
|
128
|
+
|
129
|
+
Puppet::FileSystem.each_line(group_file) do |line|
|
130
|
+
data = line.chomp.split(':')
|
131
|
+
if data.last.split(',').include?(user)
|
132
|
+
@groups_of[user] << data.first
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
@groups_of[user]
|
137
|
+
end
|
138
|
+
|
96
139
|
def shell=(value)
|
97
140
|
check_valid_shell
|
98
141
|
set(:shell, value)
|
99
142
|
end
|
100
143
|
|
144
|
+
def groups=(value)
|
145
|
+
set(:groups, value)
|
146
|
+
end
|
147
|
+
|
101
148
|
verify :gid, "GID must be an integer" do |value|
|
102
149
|
value.is_a? Integer
|
103
150
|
end
|