diff options
author | Adam Jacob <adam@hjksolutions.com> | 2008-10-06 13:23:16 -0700 |
---|---|---|
committer | Adam Jacob <adam@hjksolutions.com> | 2008-10-06 13:23:16 -0700 |
commit | 5422630b806946198391e6c3f4ba0f8eafd6900e (patch) | |
tree | 8f26c34ad101b677b4e585fdaa57efbada804968 /lib/chef/provider/user | |
parent | df08ea67e25bf43ae28ed716915702c6ccc4c7f8 (diff) | |
download | chef-5422630b806946198391e6c3f4ba0f8eafd6900e.tar.gz |
Adding the user class as a requirement
Diffstat (limited to 'lib/chef/provider/user')
-rw-r--r-- | lib/chef/provider/user/useradd.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/chef/provider/user/useradd.rb b/lib/chef/provider/user/useradd.rb index 4976d0b59b..96736a27a8 100644 --- a/lib/chef/provider/user/useradd.rb +++ b/lib/chef/provider/user/useradd.rb @@ -16,6 +16,8 @@ # limitations under the License. # +require File.join(File.dirname(__FILE__), "..", "user") + class Chef class Provider class User |