diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-02-15 19:08:12 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-02-15 19:08:12 +0000 |
commit | 0b5600a6b49400551b01cec7aa3286d42e45d36c (patch) | |
tree | 5394c4e58bbbad98e613425a71196f65d0cac178 /lib/puppet | |
parent | 17a5f4c7107353c5933f8c5c654abe7e409da56c (diff) | |
download | puppet-0b5600a6b49400551b01cec7aa3286d42e45d36c.tar.gz puppet-0b5600a6b49400551b01cec7aa3286d42e45d36c.tar.xz puppet-0b5600a6b49400551b01cec7aa3286d42e45d36c.zip |
Fixing features to use the new feature location
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2190 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet')
-rw-r--r-- | lib/puppet/feature/ldap.rb | 2 | ||||
-rw-r--r-- | lib/puppet/feature/rails.rb | 2 | ||||
-rw-r--r-- | lib/puppet/feature/usage.rb | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/puppet/feature/ldap.rb b/lib/puppet/feature/ldap.rb index 2b019c506..4ece93dc3 100644 --- a/lib/puppet/feature/ldap.rb +++ b/lib/puppet/feature/ldap.rb @@ -1,7 +1,7 @@ # Created by Luke Kanies on 2006-12-27. # Copyright (c) 2006. All rights reserved. -require 'puppet/feature' +require 'puppet/util/feature' Puppet.features.add(:ldap, :libs => ["ldap"]) diff --git a/lib/puppet/feature/rails.rb b/lib/puppet/feature/rails.rb index 238ac2802..1775339a0 100644 --- a/lib/puppet/feature/rails.rb +++ b/lib/puppet/feature/rails.rb @@ -1,7 +1,7 @@ # Created by Luke Kanies on 2006-11-07. # Copyright (c) 2006. All rights reserved. -require 'puppet/feature' +require 'puppet/util/feature' Puppet.features.add(:rails) do begin diff --git a/lib/puppet/feature/usage.rb b/lib/puppet/feature/usage.rb index c4d1c2745..a95b0ced3 100644 --- a/lib/puppet/feature/usage.rb +++ b/lib/puppet/feature/usage.rb @@ -1,8 +1,8 @@ # Created by Luke Kanies on 2006-11-07. # Copyright (c) 2006. All rights reserved. -require 'puppet/feature' +require 'puppet/util/feature' Puppet.features.add(:usage, :libs => %w{rdoc/ri/ri_paths rdoc/usage}) -# $Id$
\ No newline at end of file +# $Id$ |