moved the default upgrade backup location and the default log file location

This commit is contained in:
JT Smith 2004-12-22 16:09:03 +00:00
parent f72368fd8d
commit b6568d8346
3 changed files with 8 additions and 2 deletions

View file

@ -43,6 +43,12 @@ save you many hours of grief.
changed significantly enough that automatic migration of them is
not possible.
* The recommended default location for the WebGUI log is now
/var/log/webgui.log instead of /data/webgui.log
* The default path for WebGUI backups is now /tmp/backups rather than
/data/backups
6.2.8
--------------------------------------------------------------------

View file

@ -4,7 +4,7 @@ dsn = DBI:mysql:www_example_com
dbuser = webgui
dbpass = password
logfile = /data/webgui.log
logfile = /var/log/webgui.log
extrasURL = /extras
extrasPath = /data/WebGUI/www/extras

View file

@ -30,7 +30,7 @@ my $override;
my $quiet;
my $mysql = "/usr/bin/mysql";
my $mysqldump = "/usr/bin/mysqldump";
my $backupDir = "/data/backups";
my $backupDir = "/tmp/backups";
my $skipBackup;
my $doit;