1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/databases/msql3/scripts/check_old_version
James FitzGibbon 4941677497 Merge from msql-beta port as of 04/15/97
Upgrade to v2.0b6

PLEASE NOTE: upgrading from <= b4 of mSQL2 requires that you dump and
re-load all your databases.  See the Makefile for details.
1997-07-14 12:43:38 +00:00

33 lines
703 B
Perl

#!/usr/bin/perl
#
# $Id$
#
if( -d "/var/db/msqldb" ) {
chdir( "/var/db/pkg" );
opendir( DIR, "." );
@oldmsql = grep( /^msql-2.0b[1234]$/, readdir( DIR ) );
closedir;
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