aboutsummaryrefslogtreecommitdiff
path: root/databases/msql3/scripts/check_old_version
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2002-10-10 17:58:00 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2002-10-10 17:58:00 +0000
commit47ac56be82c72f83caff34ce4ac8f8e71bf8065a (patch)
tree9b024a0a3e5f7e9ea25f8a10c704c6fa17bdc4f1 /databases/msql3/scripts/check_old_version
parenta7b4667654401c6cff9093ae6ebd74c74d6776ac (diff)
downloadports-47ac56be82c72f83caff34ce4ac8f8e71bf8065a.tar.gz
ports-47ac56be82c72f83caff34ce4ac8f8e71bf8065a.zip
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_7_0'.release/4.7.0
Notes
Notes: svn path=/head/; revision=67749 svn path=/tags/RELEASE_4_7_0/; revision=67750; tag=release/4.7.0
Diffstat (limited to 'databases/msql3/scripts/check_old_version')
-rw-r--r--databases/msql3/scripts/check_old_version32
1 files changed, 0 insertions, 32 deletions
diff --git a/databases/msql3/scripts/check_old_version b/databases/msql3/scripts/check_old_version
deleted file mode 100644
index a87d343af800..000000000000
--- a/databases/msql3/scripts/check_old_version
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/perl
-#
-# $FreeBSD$
-#
-
-if( -d "/var/db/msqldb" ) {
- chdir( "/var/db/pkg" );
- opendir( DIR, "." );
- @oldmsql = grep( /^msql-2.0b[1234]$/, readdir( DIR ) );
- closedir( DIR );
- if( @oldmsql ) {
- if( ! $ENV{OVERWRITE_DB} ) {
- print <<END;
-
-mSQL v2.0 beta 5 and above make changes to the AVL index format of your
-databases. In order to preserve your existing data, you must:
- - use msqldump to dump all your databases
- - install beta 5 or above
- - use msqladmin to drop and then create each of your databases
- - use msql to reload your data
-
-If you understand the consequences of this upgrade, please re-build this
-port with the environment variable OVERWRITE_DB defined.
-
-END
- exit 1;
- }
- }
-}
-
-#
-# EOF