chef 18.5.0 → 18.7.3
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/Gemfile +11 -6
- data/chef-universal-mingw-ucrt.gemspec +1 -1
- data/chef.gemspec +19 -15
- data/lib/chef/application/client.rb +0 -12
- data/lib/chef/client.rb +1 -10
- data/lib/chef/compliance/default_attributes.rb +2 -2
- data/lib/chef/compliance/runner.rb +6 -11
- data/lib/chef/cookbook/metadata.rb +1 -1
- data/lib/chef/cookbook/remote_file_vendor.rb +1 -3
- data/lib/chef/cookbook/synchronizer.rb +0 -5
- data/lib/chef/event_dispatch/dispatcher.rb +0 -1
- data/lib/chef/exceptions.rb +1 -1
- data/lib/chef/file_access_control/unix.rb +9 -9
- data/lib/chef/file_content_management/deploy.rb +1 -4
- data/lib/chef/mixin/file_class.rb +1 -3
- data/lib/chef/mixin/get_source_from_package.rb +1 -1
- data/lib/chef/mixin/{homebrew_user.rb → homebrew.rb} +13 -16
- data/lib/chef/mixin/openssl_helper.rb +1 -12
- data/lib/chef/provider/cookbook_file.rb +1 -1
- data/lib/chef/provider/cron.rb +1 -1
- data/lib/chef/provider/directory.rb +15 -15
- data/lib/chef/provider/file.rb +29 -42
- data/lib/chef/provider/git.rb +8 -8
- data/lib/chef/provider/group/aix.rb +1 -1
- data/lib/chef/provider/group/dscl.rb +1 -1
- data/lib/chef/provider/group/gpasswd.rb +2 -2
- data/lib/chef/provider/group/groupadd.rb +1 -1
- data/lib/chef/provider/group/groupmod.rb +2 -2
- data/lib/chef/provider/group/pw.rb +2 -2
- data/lib/chef/provider/group/solaris.rb +2 -2
- data/lib/chef/provider/group/usermod.rb +2 -2
- data/lib/chef/provider/group.rb +1 -1
- data/lib/chef/provider/http_request.rb +3 -2
- data/lib/chef/provider/ifconfig/aix.rb +1 -1
- data/lib/chef/provider/ifconfig/debian.rb +3 -3
- data/lib/chef/provider/ifconfig/redhat.rb +1 -1
- data/lib/chef/provider/ifconfig.rb +1 -1
- data/lib/chef/provider/link.rb +10 -10
- data/lib/chef/provider/mount/aix.rb +4 -4
- data/lib/chef/provider/mount/linux.rb +4 -4
- data/lib/chef/provider/mount/mount.rb +11 -11
- data/lib/chef/provider/package/apt.rb +11 -2
- data/lib/chef/provider/package/bff.rb +3 -3
- data/lib/chef/provider/package/chocolatey.rb +2 -2
- data/lib/chef/provider/package/dnf/dnf_helper.py +7 -0
- data/lib/chef/provider/package/dpkg.rb +3 -3
- data/lib/chef/provider/package/freebsd/base.rb +1 -1
- data/lib/chef/provider/package/habitat.rb +3 -5
- data/lib/chef/provider/package/homebrew.rb +6 -9
- data/lib/chef/provider/package/ips.rb +2 -2
- data/lib/chef/provider/package/openbsd.rb +2 -3
- data/lib/chef/provider/package/pacman.rb +4 -4
- data/lib/chef/provider/package/paludis.rb +2 -2
- data/lib/chef/provider/package/portage.rb +1 -1
- data/lib/chef/provider/package/rpm.rb +2 -2
- data/lib/chef/provider/package/rubygems.rb +4 -0
- data/lib/chef/provider/package/smartos.rb +2 -2
- data/lib/chef/provider/package/snap.rb +2 -2
- data/lib/chef/provider/package/solaris.rb +4 -4
- data/lib/chef/provider/package/zypper.rb +4 -4
- data/lib/chef/provider/package.rb +1 -1
- data/lib/chef/provider/registry_key.rb +6 -0
- data/lib/chef/provider/remote_directory.rb +5 -5
- data/lib/chef/provider/remote_file/http.rb +3 -2
- data/lib/chef/provider/remote_file.rb +1 -1
- data/lib/chef/provider/route.rb +9 -9
- data/lib/chef/provider/service/aix.rb +1 -1
- data/lib/chef/provider/service/aixinit.rb +4 -4
- data/lib/chef/provider/service/arch.rb +6 -6
- data/lib/chef/provider/service/debian.rb +5 -5
- data/lib/chef/provider/service/freebsd.rb +7 -7
- data/lib/chef/provider/service/gentoo.rb +5 -5
- data/lib/chef/provider/service/init.rb +2 -2
- data/lib/chef/provider/service/insserv.rb +2 -2
- data/lib/chef/provider/service/invokercd.rb +1 -1
- data/lib/chef/provider/service/openbsd.rb +7 -7
- data/lib/chef/provider/service/redhat.rb +3 -3
- data/lib/chef/provider/service/solaris.rb +2 -2
- data/lib/chef/provider/service/systemd.rb +2 -2
- data/lib/chef/provider/service/upstart.rb +2 -2
- data/lib/chef/provider/subversion.rb +8 -8
- data/lib/chef/provider/systemd_unit.rb +3 -3
- data/lib/chef/provider/template.rb +1 -1
- data/lib/chef/provider/user/aix.rb +3 -3
- data/lib/chef/provider/user/linux.rb +2 -7
- data/lib/chef/provider/user/pw.rb +3 -3
- data/lib/chef/provider/user/solaris.rb +7 -7
- data/lib/chef/provider/user/windows.rb +5 -0
- data/lib/chef/provider/user.rb +8 -7
- data/lib/chef/provider/yum_repository.rb +3 -1
- data/lib/chef/provider/zypper_repository.rb +1 -1
- data/lib/chef/providers.rb +0 -1
- data/lib/chef/resource/alternatives.rb +2 -2
- data/lib/chef/resource/apt_preference.rb +1 -1
- data/lib/chef/resource/apt_repository.rb +90 -15
- data/lib/chef/resource/apt_update.rb +3 -3
- data/lib/chef/resource/bff_package.rb +1 -1
- data/lib/chef/resource/chef_client_config.rb +3 -2
- data/lib/chef/resource/chef_sleep.rb +1 -1
- data/lib/chef/resource/cookbook_file.rb +1 -1
- data/lib/chef/resource/cron/cron.rb +1 -1
- data/lib/chef/resource/cron/cron_d.rb +1 -1
- data/lib/chef/resource/cron_access.rb +1 -1
- data/lib/chef/resource/directory.rb +1 -1
- data/lib/chef/resource/dpkg_package.rb +1 -1
- data/lib/chef/resource/file/verification/json.rb +1 -1
- data/lib/chef/resource/file/verification/systemd_unit.rb +1 -1
- data/lib/chef/resource/file/verification/yaml.rb +1 -1
- data/lib/chef/resource/file.rb +1 -1
- data/lib/chef/resource/freebsd_package.rb +2 -2
- data/lib/chef/resource/group.rb +1 -1
- data/lib/chef/resource/habitat/habitat_package.rb +1 -1
- data/lib/chef/resource/habitat/habitat_sup.rb +9 -9
- data/lib/chef/resource/habitat/habitat_sup_systemd.rb +2 -2
- data/lib/chef/resource/habitat_install.rb +3 -3
- data/lib/chef/resource/homebrew_cask.rb +19 -30
- data/lib/chef/resource/homebrew_tap.rb +32 -17
- data/lib/chef/resource/homebrew_update.rb +4 -4
- data/lib/chef/resource/hostname.rb +10 -11
- data/lib/chef/resource/http_request.rb +1 -1
- data/lib/chef/resource/ifconfig.rb +1 -1
- data/lib/chef/resource/inspec_input.rb +1 -3
- data/lib/chef/resource/inspec_waiver.rb +1 -1
- data/lib/chef/resource/inspec_waiver_file_entry.rb +1 -1
- data/lib/chef/resource/ips_package.rb +2 -2
- data/lib/chef/resource/kernel_module.rb +2 -2
- data/lib/chef/resource/link.rb +1 -1
- data/lib/chef/resource/locale.rb +2 -2
- data/lib/chef/resource/mount.rb +1 -1
- data/lib/chef/resource/notify_group.rb +1 -1
- data/lib/chef/resource/ohai.rb +1 -1
- data/lib/chef/resource/ohai_hint.rb +1 -1
- data/lib/chef/resource/openbsd_package.rb +2 -2
- data/lib/chef/resource/package.rb +1 -1
- data/lib/chef/resource/pacman_package.rb +1 -1
- data/lib/chef/resource/paludis_package.rb +1 -1
- data/lib/chef/resource/portage_package.rb +1 -1
- data/lib/chef/resource/reboot.rb +1 -1
- data/lib/chef/resource/registry_key.rb +18 -0
- data/lib/chef/resource/remote_directory.rb +1 -1
- data/lib/chef/resource/remote_file.rb +1 -1
- data/lib/chef/resource/rhsm_errata.rb +1 -1
- data/lib/chef/resource/rhsm_errata_level.rb +1 -1
- data/lib/chef/resource/rhsm_register.rb +1 -1
- data/lib/chef/resource/rhsm_repo.rb +4 -3
- data/lib/chef/resource/rhsm_subscription.rb +9 -8
- data/lib/chef/resource/route.rb +1 -1
- data/lib/chef/resource/rpm_package.rb +1 -1
- data/lib/chef/resource/scm/git.rb +1 -1
- data/lib/chef/resource/scm/subversion.rb +1 -1
- data/lib/chef/resource/selinux/common_helpers.rb +1 -1
- data/lib/chef/resource/selinux_boolean.rb +1 -1
- data/lib/chef/resource/selinux_fcontext.rb +3 -3
- data/lib/chef/resource/selinux_install.rb +1 -1
- data/lib/chef/resource/selinux_login.rb +1 -1
- data/lib/chef/resource/selinux_module.rb +5 -5
- data/lib/chef/resource/selinux_permissive.rb +2 -2
- data/lib/chef/resource/selinux_port.rb +2 -2
- data/lib/chef/resource/selinux_state.rb +2 -2
- data/lib/chef/resource/selinux_user.rb +1 -1
- data/lib/chef/resource/smartos_package.rb +2 -2
- data/lib/chef/resource/snap_package.rb +1 -1
- data/lib/chef/resource/solaris_package.rb +1 -1
- data/lib/chef/resource/ssh_known_hosts_entry.rb +1 -1
- data/lib/chef/resource/sudo.rb +5 -5
- data/lib/chef/resource/support/client.erb +3 -2
- data/lib/chef/resource/swap_file.rb +6 -6
- data/lib/chef/resource/sysctl.rb +5 -5
- data/lib/chef/resource/systemd_unit.rb +1 -1
- data/lib/chef/resource/template.rb +1 -1
- data/lib/chef/resource/timezone.rb +5 -5
- data/lib/chef/resource/user/aix_user.rb +2 -2
- data/lib/chef/resource/user/linux_user.rb +2 -2
- data/lib/chef/resource/user/pw_user.rb +2 -2
- data/lib/chef/resource/user/solaris_user.rb +2 -2
- data/lib/chef/resource/user_ulimit.rb +1 -1
- data/lib/chef/resource/yum_repository.rb +1 -1
- data/lib/chef/resource/zypper_package.rb +2 -2
- data/lib/chef/resource/zypper_repository.rb +2 -2
- data/lib/chef/resource.rb +1 -0
- data/lib/chef/resource_inspector.rb +25 -7
- data/lib/chef/resource_reporter.rb +1 -0
- data/lib/chef/run_lock.rb +0 -3
- data/lib/chef/scan_access_control.rb +6 -6
- data/lib/chef/util/backup.rb +1 -1
- data/lib/chef/util/diff.rb +1 -14
- data/lib/chef/util/file_edit.rb +4 -4
- data/lib/chef/util/powershell/ps_credential.rb +10 -0
- data/lib/chef/version.rb +1 -1
- data/lib/chef/win32/registry.rb +5 -1
- data/lib/chef/win32/security.rb +9 -0
- data/lib/chef.rb +0 -2
- data/spec/functional/assets/yumrepo-empty/repodata/repomd.xml +6 -6
- data/spec/functional/resource/cookbook_file_spec.rb +1 -1
- data/spec/functional/resource/registry_spec.rb +276 -609
- data/spec/integration/client/open_ssl_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -0
- data/spec/support/chef_helpers.rb +2 -2
- data/spec/support/platform_helpers.rb +8 -0
- data/spec/support/shared/functional/file_resource.rb +3 -3
- data/spec/tiny_server.rb +5 -2
- data/spec/unit/mixin/homebrew_spec.rb +118 -0
- data/spec/unit/provider/apt_repository_spec.rb +14 -9
- data/spec/unit/provider/package/chocolatey_spec.rb +1 -1
- data/spec/unit/provider/package/homebrew_spec.rb +4 -1
- data/spec/unit/provider/registry_key_spec.rb +18 -17
- data/spec/unit/provider/route_spec.rb +4 -6
- data/spec/unit/provider/user/windows_spec.rb +1 -0
- data/spec/unit/resource/rhsm_repo_spec.rb +0 -1
- data/spec/unit/resource/rhsm_subscription_spec.rb +0 -2
- data/spec/unit/resource_inspector_spec.rb +36 -0
- data/spec/unit/util/powershell/ps_credential_spec.rb +6 -0
- metadata +36 -44
- data/lib/chef/file_content_management/deploy/target_io.rb +0 -29
- data/lib/chef/provider/.gitkeep +0 -0
- data/lib/chef/provider/package/snap_tm.rb +0 -79
- data/lib/chef/resource/.gitkeep +0 -0
- data/lib/chef/target_io/dir.rb +0 -12
- data/lib/chef/target_io/etc.rb +0 -16
- data/lib/chef/target_io/file.rb +0 -12
- data/lib/chef/target_io/fileutils.rb +0 -12
- data/lib/chef/target_io/http.rb +0 -22
- data/lib/chef/target_io/io.rb +0 -12
- data/lib/chef/target_io/shadow.rb +0 -44
- data/lib/chef/target_io/train/dir.rb +0 -69
- data/lib/chef/target_io/train/etc.rb +0 -112
- data/lib/chef/target_io/train/file.rb +0 -219
- data/lib/chef/target_io/train/fileutils.rb +0 -220
- data/lib/chef/target_io/train/http.rb +0 -117
- data/lib/chef/target_io/train/io.rb +0 -13
- data/lib/chef/target_io/train/shadow.rb +0 -52
- data/lib/chef/target_io/train_compat.rb +0 -7
- data/lib/chef/target_io.rb +0 -9
- data/spec/unit/mixin/homebrew_user_spec.rb +0 -119
- /data/spec/functional/assets/yumrepo-empty/repodata/{01a3b489a465bcac22a43492163df43451dc6ce47d27f66de289756b91635523-filelists.sqlite.bz2 → 01a3b-filelists.sqlite.bz2} +0 -0
- /data/spec/functional/assets/yumrepo-empty/repodata/{401dc19bda88c82c403423fb835844d64345f7e95f5b9835888189c03834cc93-filelists.xml.gz → 401dc-filelists.xml.gz} +0 -0
- /data/spec/functional/assets/yumrepo-empty/repodata/{5dc1e6e73c84803f059bb3065e684e56adfc289a7e398946574d79dac6643945-primary.sqlite.bz2 → 5dc1e-primary.sqlite.bz2} +0 -0
- /data/spec/functional/assets/yumrepo-empty/repodata/{6bf9672d0862e8ef8b8ff05a2fd0208a922b1f5978e6589d87944c88259cb670-other.xml.gz → 6bf96-other.xml.gz} +0 -0
- /data/spec/functional/assets/yumrepo-empty/repodata/{7c36572015e075add2b38b900837bcdbb8a504130ddff49b2351a7fc0affa3d4-other.sqlite.bz2 → 7c365-other.sqlite.bz2} +0 -0
- /data/spec/functional/assets/yumrepo-empty/repodata/{dabe2ce5481d23de1f4f52bdcfee0f9af98316c9e0de2ce8123adeefa0dd08b9-primary.xml.gz → dabe2-primary.xml.gz} +0 -0
@@ -18,7 +18,7 @@
|
|
18
18
|
#
|
19
19
|
|
20
20
|
require_relative "../resource"
|
21
|
-
require_relative "../mixin/
|
21
|
+
require_relative "../mixin/homebrew"
|
22
22
|
|
23
23
|
class Chef
|
24
24
|
class Resource
|
@@ -29,7 +29,7 @@ class Chef
|
|
29
29
|
description "Use the **homebrew_cask** resource to install binaries distributed via the Homebrew package manager."
|
30
30
|
introduced "14.0"
|
31
31
|
|
32
|
-
include Chef::Mixin::
|
32
|
+
include Chef::Mixin::Homebrew
|
33
33
|
|
34
34
|
property :cask_name, String,
|
35
35
|
description: "An optional property to set the cask name if it differs from the resource block's name.",
|
@@ -40,10 +40,6 @@ class Chef
|
|
40
40
|
property :options, String,
|
41
41
|
description: "Options to pass to the brew command during installation."
|
42
42
|
|
43
|
-
property :install_cask, [TrueClass, FalseClass],
|
44
|
-
description: "Automatically install the Homebrew cask tap, if necessary.",
|
45
|
-
default: true
|
46
|
-
|
47
43
|
property :homebrew_path, String,
|
48
44
|
description: "The path to the Homebrew binary."
|
49
45
|
|
@@ -53,37 +49,27 @@ class Chef
|
|
53
49
|
default_description: "Calculated default username"\
|
54
50
|
|
55
51
|
action :install, description: "Install an application that is packaged as a Homebrew cask." do
|
56
|
-
if new_resource.install_cask
|
57
|
-
homebrew_tap "homebrew/cask" do
|
58
|
-
homebrew_path homebrew_bin_path(new_resource.homebrew_path)
|
59
|
-
owner new_resource.owner
|
60
|
-
end
|
61
|
-
end
|
62
|
-
|
63
52
|
unless casked?
|
64
53
|
converge_by("install cask #{new_resource.cask_name} #{new_resource.options}") do
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
cwd
|
54
|
+
execute "install cask #{new_resource.cask_name}" do
|
55
|
+
command "#{homebrew_bin_path(new_resource.homebrew_path)} install --cask #{new_resource.cask_name} #{new_resource.options}"
|
56
|
+
user new_resource.owner
|
57
|
+
cwd ::Dir.home(new_resource.owner)
|
58
|
+
login true
|
59
|
+
end
|
69
60
|
end
|
70
61
|
end
|
71
62
|
end
|
72
63
|
|
73
64
|
action :remove, description: "Remove an application that is packaged as a Homebrew cask." do
|
74
|
-
if new_resource.install_cask
|
75
|
-
homebrew_tap "homebrew/cask" do
|
76
|
-
homebrew_path homebrew_bin_path(new_resource.homebrew_path)
|
77
|
-
owner new_resource.owner
|
78
|
-
end
|
79
|
-
end
|
80
|
-
|
81
65
|
if casked?
|
82
66
|
converge_by("uninstall cask #{new_resource.cask_name}") do
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
cwd
|
67
|
+
execute "uninstall cask #{new_resource.cask_name}" do
|
68
|
+
command "#{homebrew_bin_path(new_resource.homebrew_path)} uninstall --cask #{new_resource.cask_name}"
|
69
|
+
user new_resource.owner
|
70
|
+
cwd ::Dir.home(new_resource.owner)
|
71
|
+
login true
|
72
|
+
end
|
87
73
|
end
|
88
74
|
end
|
89
75
|
end
|
@@ -98,10 +84,13 @@ class Chef
|
|
98
84
|
# @return [Boolean]
|
99
85
|
def casked?
|
100
86
|
unscoped_name = new_resource.cask_name.split("/").last
|
101
|
-
shell_out!(
|
87
|
+
shell_out!(
|
88
|
+
"#{homebrew_bin_path(new_resource.homebrew_path)} list --cask 2>/dev/null",
|
102
89
|
user: new_resource.owner,
|
103
90
|
env: { "HOME" => ::Dir.home(new_resource.owner), "USER" => new_resource.owner },
|
104
|
-
cwd: ::Dir.home(new_resource.owner)
|
91
|
+
cwd: ::Dir.home(new_resource.owner),
|
92
|
+
login: true
|
93
|
+
).stdout.split.include?(unscoped_name)
|
105
94
|
end
|
106
95
|
end
|
107
96
|
end
|
@@ -18,7 +18,7 @@
|
|
18
18
|
#
|
19
19
|
|
20
20
|
require_relative "../resource"
|
21
|
-
require_relative "../mixin/
|
21
|
+
require_relative "../mixin/homebrew"
|
22
22
|
|
23
23
|
class Chef
|
24
24
|
class Resource
|
@@ -29,7 +29,7 @@ class Chef
|
|
29
29
|
description "Use the **homebrew_tap** resource to add additional formula repositories to the Homebrew package manager."
|
30
30
|
introduced "14.0"
|
31
31
|
|
32
|
-
include Chef::Mixin::
|
32
|
+
include Chef::Mixin::Homebrew
|
33
33
|
|
34
34
|
property :tap_name, String,
|
35
35
|
description: "An optional property to set the tap name if it differs from the resource block's name.",
|
@@ -51,10 +51,13 @@ class Chef
|
|
51
51
|
action :tap, description: "Add a Homebrew tap." do
|
52
52
|
unless tapped?(new_resource.tap_name)
|
53
53
|
converge_by("tap #{new_resource.tap_name}") do
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
54
|
+
execute "tap #{new_resource.tap_name}" do
|
55
|
+
command "#{homebrew_bin_path(new_resource.homebrew_path)} tap #{new_resource.tap_name} #{new_resource.url || ""}"
|
56
|
+
user new_resource.owner
|
57
|
+
default_env true
|
58
|
+
cwd ::Dir.home(new_resource.owner)
|
59
|
+
login true
|
60
|
+
end
|
58
61
|
end
|
59
62
|
end
|
60
63
|
end
|
@@ -62,21 +65,33 @@ class Chef
|
|
62
65
|
action :untap, description: "Remove a Homebrew tap." do
|
63
66
|
if tapped?(new_resource.tap_name)
|
64
67
|
converge_by("untap #{new_resource.tap_name}") do
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
68
|
+
execute "untap #{new_resource.tap_name}" do
|
69
|
+
command "#{homebrew_bin_path(new_resource.homebrew_path)} untap #{new_resource.tap_name}"
|
70
|
+
user new_resource.owner
|
71
|
+
default_env true
|
72
|
+
cwd ::Dir.home(new_resource.owner)
|
73
|
+
login true
|
74
|
+
end
|
69
75
|
end
|
70
76
|
end
|
71
77
|
end
|
72
78
|
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
79
|
+
action_class do
|
80
|
+
# Is the passed tap already tapped
|
81
|
+
#
|
82
|
+
# @return [Boolean]
|
83
|
+
def tapped?(name)
|
84
|
+
brew_path = ::File.dirname(homebrew_bin_path(new_resource.homebrew_path))
|
85
|
+
base_path = [
|
86
|
+
"#{brew_path}/../homebrew",
|
87
|
+
"#{brew_path}/../Homebrew",
|
88
|
+
"/opt/homebrew",
|
89
|
+
"/usr/local/Homebrew",
|
90
|
+
"/home/linuxbrew/.linuxbrew",
|
91
|
+
].filter_map { |x| x if Dir.exist?(x) }.first
|
92
|
+
tap_dir = name.gsub("/", "/homebrew-")
|
93
|
+
::File.directory?("#{base_path}/Library/Taps/#{tap_dir}")
|
94
|
+
end
|
80
95
|
end
|
81
96
|
end
|
82
97
|
end
|
@@ -19,13 +19,13 @@
|
|
19
19
|
#
|
20
20
|
|
21
21
|
require_relative "../resource"
|
22
|
-
require_relative "../mixin/
|
22
|
+
require_relative "../mixin/homebrew"
|
23
23
|
require "chef-utils/dist" unless defined?(ChefUtils::Dist)
|
24
24
|
|
25
25
|
class Chef
|
26
26
|
class Resource
|
27
27
|
class HomebrewUpdate < Chef::Resource
|
28
|
-
include Chef::Mixin::
|
28
|
+
include Chef::Mixin::Homebrew
|
29
29
|
|
30
30
|
provides(:homebrew_update) { true }
|
31
31
|
|
@@ -78,9 +78,9 @@ class Chef
|
|
78
78
|
end
|
79
79
|
|
80
80
|
execute "brew update" do
|
81
|
-
command
|
82
|
-
default_env true
|
81
|
+
command "#{homebrew_bin_path} update"
|
83
82
|
user find_homebrew_uid
|
83
|
+
login true
|
84
84
|
notifies :touch, "file[#{BREW_STAMP}]", :immediately
|
85
85
|
end
|
86
86
|
end
|
@@ -24,7 +24,7 @@ class Chef
|
|
24
24
|
# @since 14.0.0
|
25
25
|
class Hostname < Chef::Resource
|
26
26
|
|
27
|
-
provides :hostname
|
27
|
+
provides :hostname
|
28
28
|
|
29
29
|
description "Use the **hostname** resource to set the system's hostname, configure hostname and hosts config file, and re-run the Ohai hostname plugin so the hostname will be available in subsequent cookbooks."
|
30
30
|
introduced "14.0"
|
@@ -99,7 +99,7 @@ class Chef
|
|
99
99
|
|
100
100
|
action_class do
|
101
101
|
def append_replacing_matching_lines(path, regex, string)
|
102
|
-
text =
|
102
|
+
text = IO.read(path).split("\n")
|
103
103
|
text.reject! { |s| s =~ regex }
|
104
104
|
text += [ string ]
|
105
105
|
file path do
|
@@ -107,7 +107,7 @@ class Chef
|
|
107
107
|
owner "root"
|
108
108
|
group node["root_group"]
|
109
109
|
mode "0644"
|
110
|
-
not_if {
|
110
|
+
not_if { IO.read(path).split("\n").include?(string) }
|
111
111
|
end
|
112
112
|
end
|
113
113
|
|
@@ -181,14 +181,14 @@ class Chef
|
|
181
181
|
end
|
182
182
|
when linux?
|
183
183
|
case
|
184
|
-
when ::
|
184
|
+
when ::File.exist?("/usr/bin/hostnamectl") && !docker?
|
185
185
|
# use hostnamectl whenever we find it on linux (as systemd takes over the world)
|
186
186
|
# this must come before other methods like /etc/hostname and /etc/sysconfig/network
|
187
187
|
execute "hostnamectl set-hostname #{new_resource.hostname}" do
|
188
188
|
notifies :reload, "ohai[reload hostname]"
|
189
189
|
not_if { shell_out!("hostnamectl status", returns: [0, 1]).stdout =~ /Static hostname:\s*#{new_resource.hostname}\s*$/ }
|
190
190
|
end
|
191
|
-
when ::
|
191
|
+
when ::File.exist?("/etc/hostname")
|
192
192
|
# debian family uses /etc/hostname
|
193
193
|
# arch also uses /etc/hostname
|
194
194
|
# the "platform: iox_xr, platform_family: wrlinux, os: linux" platform also hits this
|
@@ -201,10 +201,10 @@ class Chef
|
|
201
201
|
group node["root_group"]
|
202
202
|
mode "0644"
|
203
203
|
end
|
204
|
-
when ::
|
204
|
+
when ::File.file?("/etc/sysconfig/network")
|
205
205
|
# older non-systemd RHEL/Fedora derived
|
206
206
|
append_replacing_matching_lines("/etc/sysconfig/network", /^HOSTNAME\s*=/, "HOSTNAME=#{new_resource.hostname}")
|
207
|
-
when ::
|
207
|
+
when ::File.exist?("/etc/HOSTNAME")
|
208
208
|
# SuSE/openSUSE uses /etc/HOSTNAME
|
209
209
|
file "/etc/HOSTNAME" do
|
210
210
|
content "#{new_resource.hostname}\n"
|
@@ -212,7 +212,7 @@ class Chef
|
|
212
212
|
group node["root_group"]
|
213
213
|
mode "0644"
|
214
214
|
end
|
215
|
-
when ::
|
215
|
+
when ::File.exist?("/etc/conf.d/hostname")
|
216
216
|
# Gentoo
|
217
217
|
file "/etc/conf.d/hostname" do
|
218
218
|
content "hostname=\"#{new_resource.hostname}\"\n"
|
@@ -226,7 +226,7 @@ class Chef
|
|
226
226
|
# that manage sysctls on linux.
|
227
227
|
append_replacing_matching_lines("/etc/sysctl.conf", /^\s+kernel\.hostname\s+=/, "kernel.hostname=#{new_resource.hostname}")
|
228
228
|
end
|
229
|
-
when ::
|
229
|
+
when ::File.exist?("/etc/rc.conf")
|
230
230
|
# *BSD systems with /etc/rc.conf + /etc/myname
|
231
231
|
append_replacing_matching_lines("/etc/rc.conf", /^\s+hostname\s+=/, "hostname=#{new_resource.hostname}")
|
232
232
|
|
@@ -236,7 +236,7 @@ class Chef
|
|
236
236
|
group node["root_group"]
|
237
237
|
mode "0644"
|
238
238
|
end
|
239
|
-
when ::
|
239
|
+
when ::File.exist?("/usr/sbin/svccfg") # solaris 5.11
|
240
240
|
execute "svccfg -s system/identity:node setprop config/nodename=\'#{new_resource.hostname}\'" do
|
241
241
|
notifies :run, "execute[svcadm refresh]", :immediately
|
242
242
|
notifies :run, "execute[svcadm restart]", :immediately
|
@@ -259,7 +259,6 @@ class Chef
|
|
259
259
|
WINDOWS_EC2_CONFIG = 'C:\Program Files\Amazon\Ec2ConfigService\Settings\config.xml'.freeze
|
260
260
|
|
261
261
|
raise "Windows hostnames cannot contain a period." if new_resource.hostname.include?(".")
|
262
|
-
raise "Windows not supported in Target Mode" if ChefConfig::Config.target_mode?
|
263
262
|
|
264
263
|
# suppress EC2 config service from setting our hostname
|
265
264
|
if ::File.exist?(WINDOWS_EC2_CONFIG)
|
@@ -23,7 +23,7 @@ class Chef
|
|
23
23
|
class Resource
|
24
24
|
class HttpRequest < Chef::Resource
|
25
25
|
|
26
|
-
provides :http_request
|
26
|
+
provides :http_request
|
27
27
|
|
28
28
|
description "Use the **http_request** resource to send an HTTP request (`GET`, `PUT`, `POST`, `DELETE`, `HEAD`, or `OPTIONS`) with an arbitrary message. This resource is often useful when custom callbacks are necessary."
|
29
29
|
|
@@ -23,7 +23,7 @@ class Chef
|
|
23
23
|
class Resource
|
24
24
|
class Ifconfig < Chef::Resource
|
25
25
|
|
26
|
-
provides :ifconfig
|
26
|
+
provides :ifconfig
|
27
27
|
|
28
28
|
description "Use the **ifconfig** resource to manage interfaces on Unix and Linux systems. Note: This resource requires the ifconfig binary to be present on the system and may require additional packages to be installed first. On Ubuntu 18.04 or later you will need to install the `ifupdown` package, which disables the built in Netplan functionality. Warning: This resource will not work with Fedora release 33 or later."
|
29
29
|
examples <<~DOC
|
@@ -19,7 +19,7 @@ require_relative "../resource"
|
|
19
19
|
class Chef
|
20
20
|
class Resource
|
21
21
|
class InspecInput < Chef::Resource
|
22
|
-
provides :inspec_input
|
22
|
+
provides :inspec_input
|
23
23
|
|
24
24
|
description "Use the **inspec_input** resource to add an input to the Compliance Phase."
|
25
25
|
introduced "17.5"
|
@@ -105,8 +105,6 @@ class Chef
|
|
105
105
|
def build_source
|
106
106
|
return new_resource.source unless new_resource.source.nil?
|
107
107
|
return nil unless new_resource.input.count(::File::SEPARATOR) > 0 || (::File::ALT_SEPARATOR && new_resource.input.count(::File::ALT_SEPARATOR) > 0 )
|
108
|
-
|
109
|
-
# InSpec gets processed locally, so no TargetIO
|
110
108
|
return nil unless ::File.exist?(new_resource.input)
|
111
109
|
|
112
110
|
new_resource.input
|
@@ -19,7 +19,7 @@ require_relative "../resource"
|
|
19
19
|
class Chef
|
20
20
|
class Resource
|
21
21
|
class InspecWaiver < Chef::Resource
|
22
|
-
provides :inspec_waiver
|
22
|
+
provides :inspec_waiver
|
23
23
|
|
24
24
|
description "Use the **inspec_waiver** resource to add a waiver to the Compliance Phase."
|
25
25
|
introduced "17.5"
|
@@ -23,7 +23,7 @@ require "chef-utils/dist" unless defined?(ChefUtils::Dist)
|
|
23
23
|
class Chef
|
24
24
|
class Resource
|
25
25
|
class InspecWaiverFileEntry < Chef::Resource
|
26
|
-
provides :inspec_waiver_file_entry
|
26
|
+
provides :inspec_waiver_file_entry
|
27
27
|
|
28
28
|
description "Use the **inspec_waiver_file_entry** resource to add or remove entries from an InSpec waiver file. This can be used in conjunction with the Compliance Phase."
|
29
29
|
introduced "17.1"
|
@@ -23,8 +23,8 @@ class Chef
|
|
23
23
|
class Resource
|
24
24
|
class IpsPackage < ::Chef::Resource::Package
|
25
25
|
|
26
|
-
provides :ips_package
|
27
|
-
provides :package, os: "solaris2"
|
26
|
+
provides :ips_package
|
27
|
+
provides :package, os: "solaris2"
|
28
28
|
|
29
29
|
description "Use the **ips_package** resource to manage packages (using Image Packaging System (IPS)) on the Solaris 11 platform."
|
30
30
|
|
@@ -12,7 +12,7 @@ class Chef
|
|
12
12
|
class Resource
|
13
13
|
class KernelModule < Chef::Resource
|
14
14
|
|
15
|
-
provides :kernel_module
|
15
|
+
provides :kernel_module
|
16
16
|
|
17
17
|
description "Use the **kernel_module** resource to manage kernel modules on Linux systems. This resource can load, unload, blacklist, disable, enable, install, and uninstall modules."
|
18
18
|
introduced "14.3"
|
@@ -232,7 +232,7 @@ class Chef
|
|
232
232
|
# see if the module is listed in /proc/modules or not
|
233
233
|
# @return [Boolean]
|
234
234
|
def module_loaded?
|
235
|
-
/^#{new_resource.modname}/.match?(::
|
235
|
+
/^#{new_resource.modname}/.match?(::File.read("/proc/modules"))
|
236
236
|
end
|
237
237
|
end
|
238
238
|
end
|
data/lib/chef/resource/link.rb
CHANGED
@@ -25,7 +25,7 @@ class Chef
|
|
25
25
|
class Link < Chef::Resource
|
26
26
|
include Chef::Mixin::Securable
|
27
27
|
|
28
|
-
provides :link
|
28
|
+
provides :link
|
29
29
|
|
30
30
|
description "Use the **link** resource to create symbolic or hard links.\n\n"\
|
31
31
|
"A symbolic link—sometimes referred to as a soft link—is a directory entry"\
|
data/lib/chef/resource/locale.rb
CHANGED
@@ -21,7 +21,7 @@ require "chef-utils/dist" unless defined?(ChefUtils::Dist)
|
|
21
21
|
class Chef
|
22
22
|
class Resource
|
23
23
|
class Locale < Chef::Resource
|
24
|
-
provides :locale
|
24
|
+
provides :locale
|
25
25
|
|
26
26
|
description "Use the **locale** resource to set the system's locale on Debian and Windows systems. Windows support was added in Chef Infra Client 16.0"
|
27
27
|
introduced "14.5"
|
@@ -79,7 +79,7 @@ class Chef
|
|
79
79
|
lang get_system_locale_windows
|
80
80
|
else
|
81
81
|
begin
|
82
|
-
old_content = ::
|
82
|
+
old_content = ::File.read(LOCALE_CONF)
|
83
83
|
locale_values = Hash[old_content.split("\n").map { |v| v.split("=") }]
|
84
84
|
lang locale_values["LANG"]
|
85
85
|
rescue Errno::ENOENT => e
|
data/lib/chef/resource/mount.rb
CHANGED
@@ -24,7 +24,7 @@ class Chef
|
|
24
24
|
class Mount < Chef::Resource
|
25
25
|
description "Use the **mount** resource to manage a mounted file system."
|
26
26
|
|
27
|
-
provides :mount
|
27
|
+
provides :mount
|
28
28
|
|
29
29
|
default_action :mount
|
30
30
|
allowed_actions :mount, :umount, :unmount, :remount, :enable, :disable
|
@@ -19,7 +19,7 @@ require_relative "../resource"
|
|
19
19
|
class Chef
|
20
20
|
class Resource
|
21
21
|
class NotifyGroup < Chef::Resource
|
22
|
-
provides :notify_group
|
22
|
+
provides :notify_group
|
23
23
|
|
24
24
|
description "The notify_group resource does nothing, and always fires notifications which are set on it. Use it to DRY blocks of notifications that are common to multiple resources, and provide a single target for other resources to notify. Unlike most resources, its default action is :nothing."
|
25
25
|
introduced "15.8"
|
data/lib/chef/resource/ohai.rb
CHANGED
@@ -26,7 +26,7 @@ class Chef
|
|
26
26
|
class Resource
|
27
27
|
class Ohai < Chef::Resource
|
28
28
|
|
29
|
-
provides :ohai
|
29
|
+
provides :ohai
|
30
30
|
|
31
31
|
description "Use the **ohai** resource to reload the Ohai configuration on a node. This allows recipes that change system attributes (like a recipe that adds a user) to refer to those attributes later on during the #{ChefUtils::Dist::Infra::PRODUCT} run."
|
32
32
|
|
@@ -21,7 +21,7 @@ class Chef
|
|
21
21
|
class Resource
|
22
22
|
class OhaiHint < Chef::Resource
|
23
23
|
|
24
|
-
provides(:ohai_hint
|
24
|
+
provides(:ohai_hint) { true }
|
25
25
|
|
26
26
|
description "Use the **ohai_hint** resource to aid in configuration detection by passing hint data to Ohai."
|
27
27
|
introduced "14.0"
|
@@ -25,8 +25,8 @@ require_relative "../provider/package/openbsd"
|
|
25
25
|
class Chef
|
26
26
|
class Resource
|
27
27
|
class OpenbsdPackage < Chef::Resource::Package
|
28
|
-
provides :openbsd_package
|
29
|
-
provides :package, os: "openbsd"
|
28
|
+
provides :openbsd_package
|
29
|
+
provides :package, os: "openbsd"
|
30
30
|
|
31
31
|
description "Use the **openbsd_package** resource to manage packages for the OpenBSD platform."
|
32
32
|
introduced "12.1"
|
@@ -22,7 +22,7 @@ require_relative "../resource"
|
|
22
22
|
class Chef
|
23
23
|
class Resource
|
24
24
|
class Package < Chef::Resource
|
25
|
-
provides :package
|
25
|
+
provides :package
|
26
26
|
|
27
27
|
description "Use the **package** resource to manage packages. When the package is"\
|
28
28
|
" installed from a local file (such as with RubyGems, dpkg, or RPM"\
|
@@ -23,7 +23,7 @@ class Chef
|
|
23
23
|
class Resource
|
24
24
|
class PaludisPackage < Chef::Resource::Package
|
25
25
|
|
26
|
-
provides :paludis_package
|
26
|
+
provides :paludis_package
|
27
27
|
|
28
28
|
description "Use the **paludis_package** resource to manage packages for the Paludis platform."
|
29
29
|
introduced "12.1"
|
@@ -22,7 +22,7 @@ class Chef
|
|
22
22
|
class Resource
|
23
23
|
class PortagePackage < Chef::Resource::Package
|
24
24
|
|
25
|
-
provides :portage_package
|
25
|
+
provides :portage_package
|
26
26
|
|
27
27
|
description "Use the **portage_package** resource to manage packages for the Gentoo platform."
|
28
28
|
|
data/lib/chef/resource/reboot.rb
CHANGED
@@ -23,7 +23,7 @@ class Chef
|
|
23
23
|
class Resource
|
24
24
|
class Reboot < Chef::Resource
|
25
25
|
|
26
|
-
provides :reboot
|
26
|
+
provides :reboot
|
27
27
|
|
28
28
|
description "Use the **reboot** resource to reboot a node, a necessary step with some"\
|
29
29
|
" installations on certain platforms. This resource is supported for use on"\
|
@@ -41,6 +41,19 @@ class Chef
|
|
41
41
|
end
|
42
42
|
```
|
43
43
|
|
44
|
+
```ruby
|
45
|
+
**Suppress reporting the sibling values of the values being updated in a registry key**
|
46
|
+
registry 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\CONTROL\Session Manager' do
|
47
|
+
values [{
|
48
|
+
name: 'ProtectionMode',
|
49
|
+
type: :dword,
|
50
|
+
data: 1
|
51
|
+
}]
|
52
|
+
only_record_changes true
|
53
|
+
action :create
|
54
|
+
end
|
55
|
+
```
|
56
|
+
|
44
57
|
**Create a registry key with binary data: "\x01\x02\x03"**:
|
45
58
|
|
46
59
|
```ruby
|
@@ -50,6 +63,7 @@ class Chef
|
|
50
63
|
:type => :binary,
|
51
64
|
:data => [0, 1, 2].map(&:chr).join
|
52
65
|
}]
|
66
|
+
|
53
67
|
action :create
|
54
68
|
end
|
55
69
|
```
|
@@ -150,6 +164,10 @@ class Chef
|
|
150
164
|
}
|
151
165
|
property :recursive, [TrueClass, FalseClass], default: false
|
152
166
|
property :architecture, Symbol, default: :machine, equal_to: %i{machine x86_64 i386}
|
167
|
+
property :only_record_changes, [TrueClass, FalseClass],
|
168
|
+
default: true,
|
169
|
+
introduced: "19.0",
|
170
|
+
description: "Suppress reporting of the current value of sibling values in a registry key. Setting this to false may result in a large number of values reported."
|
153
171
|
|
154
172
|
# Some registry key data types may not be safely reported as json.
|
155
173
|
# Example (CHEF-5323):
|
@@ -26,7 +26,7 @@ class Chef
|
|
26
26
|
class RemoteDirectory < Chef::Resource::Directory
|
27
27
|
include Chef::Mixin::Securable
|
28
28
|
|
29
|
-
provides :remote_directory
|
29
|
+
provides :remote_directory
|
30
30
|
|
31
31
|
description "Use the **remote_directory** resource to incrementally transfer a directory from a cookbook to a node. The directory that is copied from the cookbook should be located under `COOKBOOK_NAME/files/default/REMOTE_DIRECTORY`. The `remote_directory` resource will obey file specificity."
|
32
32
|
|
@@ -29,7 +29,7 @@ class Chef
|
|
29
29
|
class RemoteFile < Chef::Resource::File
|
30
30
|
include Chef::Mixin::Securable
|
31
31
|
|
32
|
-
provides :remote_file
|
32
|
+
provides :remote_file
|
33
33
|
|
34
34
|
description "Use the **remote_file** resource to transfer a file from a remote location using file specificity. This resource is similar to the **file** resource. Note: Fetching files from the `files/` directory in a cookbook should be done with the **cookbook_file** resource."
|
35
35
|
|
@@ -20,7 +20,7 @@ require_relative "../resource"
|
|
20
20
|
class Chef
|
21
21
|
class Resource
|
22
22
|
class RhsmErrata < Chef::Resource
|
23
|
-
provides(:rhsm_errata
|
23
|
+
provides(:rhsm_errata) { true }
|
24
24
|
|
25
25
|
description "Use the **rhsm_errata** resource to install packages associated with a given Red Hat Subscription Manager Errata ID. This is helpful if packages to mitigate a single vulnerability must be installed on your hosts."
|
26
26
|
introduced "14.0"
|
@@ -20,7 +20,7 @@ require_relative "../resource"
|
|
20
20
|
class Chef
|
21
21
|
class Resource
|
22
22
|
class RhsmErrataLevel < Chef::Resource
|
23
|
-
provides(:rhsm_errata_level
|
23
|
+
provides(:rhsm_errata_level) { true }
|
24
24
|
|
25
25
|
description "Use the **rhsm_errata_level** resource to install all packages of a specified errata level from the Red Hat Subscription Manager. For example, you can ensure that all packages associated with errata marked at a 'Critical' security level are installed."
|
26
26
|
introduced "14.0"
|
@@ -22,7 +22,7 @@ require "shellwords" unless defined?(Shellwords)
|
|
22
22
|
class Chef
|
23
23
|
class Resource
|
24
24
|
class RhsmRegister < Chef::Resource
|
25
|
-
provides(:rhsm_register
|
25
|
+
provides(:rhsm_register) { true }
|
26
26
|
|
27
27
|
description "Use the **rhsm_register** resource to register a node with the Red Hat Subscription Manager or a local Red Hat Satellite server."
|
28
28
|
introduced "14.0"
|
@@ -21,7 +21,7 @@ class Chef
|
|
21
21
|
class Resource
|
22
22
|
class RhsmRepo < Chef::Resource
|
23
23
|
|
24
|
-
provides(:rhsm_repo
|
24
|
+
provides(:rhsm_repo) { true }
|
25
25
|
|
26
26
|
description "Use the **rhsm_repo** resource to enable or disable Red Hat Subscription Manager repositories that are made available via attached subscriptions."
|
27
27
|
introduced "14.0"
|
@@ -65,8 +65,9 @@ class Chef
|
|
65
65
|
|
66
66
|
action_class do
|
67
67
|
def repo_enabled?(repo)
|
68
|
-
# FIXME:
|
69
|
-
cmd =
|
68
|
+
# FIXME: use shell_out()
|
69
|
+
cmd = Mixlib::ShellOut.new("subscription-manager repos --list-enabled", env: { LANG: "en_US" })
|
70
|
+
cmd.run_command
|
70
71
|
repo == "*" || !cmd.stdout.match(/Repo ID:\s+#{repo}$/).nil?
|
71
72
|
end
|
72
73
|
end
|