diff options
author | Tim Smith <tsmith@chef.io> | 2018-02-26 10:05:10 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-02-26 10:05:10 -0800 |
commit | f5b6c32f2175e9c507fb9999fa009c4c96763d3b (patch) | |
tree | f04f1d17bb59e407cc9d7f3b50f2e747e91c5db3 /lib/chef/resource/osx_profile.rb | |
parent | b114fdea64f32f42ba78e9132017c9c871be378c (diff) | |
download | chef-f5b6c32f2175e9c507fb9999fa009c4c96763d3b.tar.gz |
Add back the identity_attr
Turns out this is going to cause issues
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resource/osx_profile.rb')
-rw-r--r-- | lib/chef/resource/osx_profile.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/chef/resource/osx_profile.rb b/lib/chef/resource/osx_profile.rb index f7d7bb75f2..56eca90a7e 100644 --- a/lib/chef/resource/osx_profile.rb +++ b/lib/chef/resource/osx_profile.rb @@ -28,9 +28,12 @@ class Chef provides :osx_profile, os: "darwin" provides :osx_config_profile, os: "darwin" + identity_attr :profile_name + description "12.7" default_action :install + allowed_actions :install, :remove property :profile_name, String, name_property: true |