diff options
author | Adam Jacob <adam@hjksolutions.com> | 2008-10-06 13:23:49 -0700 |
---|---|---|
committer | Adam Jacob <adam@hjksolutions.com> | 2008-10-06 13:23:49 -0700 |
commit | bd0d964eb5b91ac655a8ae8b9cc9ec00b093f116 (patch) | |
tree | b4648dc664b4a28dbd3274fabcb3d232307c5462 | |
parent | 5422630b806946198391e6c3f4ba0f8eafd6900e (diff) | |
download | chef-bd0d964eb5b91ac655a8ae8b9cc9ec00b093f116.tar.gz |
Adding provider as a requirement
-rw-r--r-- | lib/chef/provider/user.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/chef/provider/user.rb b/lib/chef/provider/user.rb index f2c5e0c65c..a3de68d93c 100644 --- a/lib/chef/provider/user.rb +++ b/lib/chef/provider/user.rb @@ -16,6 +16,7 @@ # limitations under the License. # +require File.join(File.dirname(__FILE__), "..", "provider") require File.join(File.dirname(__FILE__), "..", "mixin", "command") require 'etc' |