diff options
-rw-r--r-- | lib/chef/resource/user.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/resource/user.rb b/lib/chef/resource/user.rb index 5c9a0c7a6d..b8e11d45d8 100644 --- a/lib/chef/resource/user.rb +++ b/lib/chef/resource/user.rb @@ -1,6 +1,6 @@ # # Author:: Adam Jacob (<adam@chef.io>) -# Copyright:: Copyright 2008-2017, Chef Software Inc. +# Copyright:: Copyright 2008-2018, Chef Software Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -32,8 +32,8 @@ class Chef property :username, String, name_property: true property :comment, String - property :uid, [ String, Integer, NilClass ], default: nil - property :gid, [ String, Integer, NilClass ], default: nil + property :uid, [ String, Integer ] + property :gid, [ String, Integer ] property :home, String property :shell, String property :password, String |