Hello, I had do make a small patch to create bweb mysql tables, mysql table names are case sensitive. ( system is CentOS 5.2, mysql-5.0.45-7.el5 )
Thanks Ulrich [EMAIL PROTECTED] bweb]$ svn diff script/bweb-mysql.sql Index: script/bweb-mysql.sql =================================================================== --- script/bweb-mysql.sql (revision 7952) +++ script/bweb-mysql.sql (working copy) @@ -41,8 +41,8 @@ UPDATE Status SET severity = 100 where JobStatus = 'f'; UPDATE Status SET severity = 90 where JobStatus = 'A'; UPDATE Status SET severity = 10 where JobStatus = 'T'; -UPDATE status SET severity = 20 where jobstatus = 'e'; -UPDATE status SET severity = 25 where jobstatus = 'E'; +UPDATE Status SET severity = 20 where jobstatus = 'e'; +UPDATE Status SET severity = 25 where jobstatus = 'E'; -- New tables for bresto (same as brestore) ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Bacula-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/bacula-devel
