summaryrefslogtreecommitdiff
path: root/lib/chef/resource/user.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2020-04-02 13:11:23 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2020-04-02 13:11:23 -0700
commit333e0695117f8a518b8f2729bc3f97a5bd6560e4 (patch)
tree075407f7449b87bf4c24c09e3750e282357c5e58 /lib/chef/resource/user.rb
parent6185d25626e63973c22ed4736af048c1f11dab9d (diff)
downloadchef-333e0695117f8a518b8f2729bc3f97a5bd6560e4.tar.gz
remove redundant identity
name_property implies identity if there is no other identity property this has been the behavior for a very long time, dunno why #4282 was never closed. closes #4282 Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/resource/user.rb')
-rw-r--r--lib/chef/resource/user.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/user.rb b/lib/chef/resource/user.rb
index b72cc22b2d..035ec53875 100644
--- a/lib/chef/resource/user.rb
+++ b/lib/chef/resource/user.rb
@@ -30,7 +30,7 @@ class Chef
property :username, String,
description: "An optional property to set the username value if it differs from the resource block's name.",
- name_property: true, identity: true
+ name_property: true
property :comment, String,
description: "The contents of the user comments field."