diff options
author | Claire McQuin <claire@opscode.com> | 2013-10-14 21:17:57 -0700 |
---|---|---|
committer | Claire McQuin <claire@opscode.com> | 2013-10-17 12:07:31 -0700 |
commit | bbb4b0fbf4a25c62014c7912fbbc8c81ea186d60 (patch) | |
tree | 2bbd269200b07ffb10dd345bcd7ce5393c7c9dcf | |
parent | 15c0cf8958a587ee4708aaeb9f68701e2ac56738 (diff) | |
download | ohai-bbb4b0fbf4a25c62014c7912fbbc8c81ea186d60.tar.gz |
insert plugin documentation URL to v6 deprecation message
-rw-r--r-- | lib/ohai/loader.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ohai/loader.rb b/lib/ohai/loader.rb index 673b7b1d..288100d9 100644 --- a/lib/ohai/loader.rb +++ b/lib/ohai/loader.rb @@ -56,7 +56,7 @@ module Ohai return plugin if plugin.nil? collect_provides(plugin) else - Ohai::Log.warn("[DEPRECATION] Plugin at #{plugin_path} is a version 6 plugin. Version 6 plugins will not be supported in future releases of Ohai. Please upgrage your plugin to version 7 plugin syntax. For more information visit here: XXX") + Ohai::Log.warn("[DEPRECATION] Plugin at #{plugin_path} is a version 6 plugin. Version 6 plugins will not be supported in future releases of Ohai. Please upgrage your plugin to version 7 plugin syntax. For more information visit here: docs.opscode.com/ohai_custom.html") klass = Ohai.v6plugin(plugin_name) { collect_contents(contents) } plugin = klass.new(@controller, plugin_path) end |