1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-10-16 01:21:15 +02:00
metasploit-framework/plugins/db_sqlite3.rb
Joshua Drake 4a796f794a uniq-ify class names
git-svn-id: file:///home/svn/framework3/trunk@9958 4d416f70-5f16-0410-b530-b9f4589650da
2010-08-05 02:23:34 +00:00

24 lines
575 B
Ruby

##
# $Id$
# $Revision$
##
module Msf
class Plugin::DeprecatedSqlite3 < Msf::Plugin
def name
"Deprecated_plugin_stub"
end
def initialize(framework, opts)
super
print_error("")
print_error("The functionality previously provided by this plugin has been")
print_error("integrated into the core command set. Use the new 'db_driver'")
print_error("command to use a database driver other than sqlite3 (which")
print_error("is now the default). All of the old commands are the same.")
print_error("")
raise RuntimeError.new("Deprecated plugin")
end
end
end