diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2020-04-02 20:52:50 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2020-04-02 20:52:50 -0700 |
commit | 40ed1d6656b479ea91849eec18d4866e2957cd42 (patch) | |
tree | 3d806601115280b287ed9637a256e5acfd4880e7 | |
parent | 2d29c64b267da7ab50102029c6fa1a79a4f02701 (diff) | |
download | chef-40ed1d6656b479ea91849eec18d4866e2957cd42.tar.gz |
remove identity: false herelcg/redundant-identity
the name_property-identity patch was made backcompatible so that
this was never necessary
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rw-r--r-- | lib/chef/resource/mount.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/mount.rb b/lib/chef/resource/mount.rb index ffe43a9afd..4a96aad353 100644 --- a/lib/chef/resource/mount.rb +++ b/lib/chef/resource/mount.rb @@ -40,7 +40,7 @@ class Chef description: "Windows only:. Use to specify the password for username.", sensitive: true - property :mount_point, String, name_property: true, identity: false, + property :mount_point, String, name_property: true, description: "The directory (or path) in which the device is to be mounted. Defaults to the name of the resource block if not provided." property :device, String, identity: true, |