added configuration for bind's TTL value, fixes #166

This commit is contained in:
Michael Kaufmann (d00p)
2010-04-20 06:22:11 +00:00
parent 4f5cb34f00
commit 96219f406d
7 changed files with 29 additions and 3 deletions

View File

@@ -472,4 +472,15 @@ if(isFroxlorVersion('0.9.4-svn2'))
lastStepStatus(0);
updateToVersion('0.9.5');
}
if(isFroxlorVersion('0.9.5'))
{
showUpdateStep("Updating from 0.9.5 to 0.9.6-svn1", true);
showUpdateStep("Adding time-to-live configuration setting");
$db->query("INSERT INTO `" . TABLE_PANEL_SETTINGS . "` (`settinggroup`, `varname`, `value`) VALUES ('system', 'defaultttl', '604800');");
lastStepStatus(0);
updateToVersion('0.9.6-svn1');
}
?>