From b53d23ebac3d7bcad24ebd21500a188fa9bbf5b7 Mon Sep 17 00:00:00 2001 From: James Lee Date: Tue, 28 Jun 2011 18:05:21 +0000 Subject: [PATCH] remove deprecated db plugins. git-svn-id: file:///home/svn/framework3/trunk@13049 4d416f70-5f16-0410-b530-b9f4589650da --- plugins/db_mysql.rb | 23 ----------------------- plugins/db_postgres.rb | 23 ----------------------- plugins/db_sqlite2.rb | 23 ----------------------- plugins/db_sqlite3.rb | 23 ----------------------- 4 files changed, 92 deletions(-) delete mode 100644 plugins/db_mysql.rb delete mode 100644 plugins/db_postgres.rb delete mode 100644 plugins/db_sqlite2.rb delete mode 100644 plugins/db_sqlite3.rb diff --git a/plugins/db_mysql.rb b/plugins/db_mysql.rb deleted file mode 100644 index 482937d528..0000000000 --- a/plugins/db_mysql.rb +++ /dev/null @@ -1,23 +0,0 @@ -# -# $Id$ -# $Revision$ -# - -module Msf -class Plugin::DeprecatedMysql < 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 - diff --git a/plugins/db_postgres.rb b/plugins/db_postgres.rb deleted file mode 100644 index 90739e9956..0000000000 --- a/plugins/db_postgres.rb +++ /dev/null @@ -1,23 +0,0 @@ -# -# $Id$ -# $Revision$ -# - -module Msf -class Plugin::DeprecatedPostgres < 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 - diff --git a/plugins/db_sqlite2.rb b/plugins/db_sqlite2.rb deleted file mode 100644 index 08be565d80..0000000000 --- a/plugins/db_sqlite2.rb +++ /dev/null @@ -1,23 +0,0 @@ -# -# $Id$ -# $Revision$ -# - -module Msf -class Plugin::DeprecatedSqlite2 < 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 - diff --git a/plugins/db_sqlite3.rb b/plugins/db_sqlite3.rb deleted file mode 100644 index 6187d515a2..0000000000 --- a/plugins/db_sqlite3.rb +++ /dev/null @@ -1,23 +0,0 @@ -## -# $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 -