fixed a problem with the new upgrade thing

This commit is contained in:
JT Smith 2005-02-17 18:17:25 +00:00
parent 6f056e4698
commit fa680c215d

View file

@ -278,7 +278,7 @@ foreach my $config (keys %config) {
my $cmd = $clicmd." -u".$config{$config}{dbuser}." -p".$config{$config}{dbpass};
$cmd .= " --host=".$config{$config}{host} if ($config{$config}{host});
$cmd .= " --port=".$config{$config}{port} if ($config{$config}{port});
$cmd .= " --database=".$config{$config}{db}." -e \"delete from settings where name='upgrading'\"";
$cmd .= " --database=".$config{$config}{db}." -e \"delete from settings where name='specialState'\"";
unless (system($cmd)) {
print "OK\n" unless ($quiet);
} else {