diff options
author | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-03-16 01:12:10 +0000 |
---|---|---|
committer | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-03-16 01:12:10 +0000 |
commit | 6536e8c850947ee4626214ce8a0e0e94b814e30c (patch) | |
tree | f9cc7612fa6aa3f1c1cfd79ff64562195ad27e82 /src | |
parent | ba0611d9940c891787143b46f33efbf81e58a608 (diff) |
BUILD : 1.7.8 (629) BUGS : 313 NOTES : Updated mydbgen and Changes.mysql to remove anope_os_cache
git-svn-id: svn://svn.anope.org/anope/trunk@629 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@477 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rwxr-xr-x | src/bin/mydbgen | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/bin/mydbgen b/src/bin/mydbgen index 25957a388..77eb22aac 100755 --- a/src/bin/mydbgen +++ b/src/bin/mydbgen @@ -166,12 +166,16 @@ else fi # Introduced on Anope 1.7.7 -> status smallint to inst unsigned. - echo -n "Blindly altering status for bigger capacity... " + echo "Blindly altering status for bigger capacity... " echo "ALTER TABLE anope_ns_alias CHANGE status status int(11) unsigned NOT NULL default 0" > $TFILE mysql -h$SQLHOST -u$SQLUSER -p$SQLPASS $SQLDB < $TFILE >/dev/null 2>&1 - echo "done!" + # Introduced on Anope 1.7.8 (620) proxy scanner removed. + echo "Removing proxy scanner cache... " + echo "DROP TABLE IF EXISTS anope_os_cache" > $TFILE + mysql -h$SQLHOST -u$SQLUSER -p$SQLPASS $SQLDB < $TFILE >/dev/null 2>&1 + echo "done!" fi |