]> git.sur5r.net Git - bacula/bacula/commitdiff
Tweak name of the database
authorBruno Friedmann <bruno@ioda-net.ch>
Thu, 16 Feb 2012 15:51:38 +0000 (16:51 +0100)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:50:41 +0000 (14:50 +0200)
Add instructions for creating the database
Add dir_user and dir_group as owner in case of non-root

Signed-off-by: Bruno Friedmann <bruno@ioda-net.ch>
Signed-off-by: Marco van Wieringen <mvw@planets.elm.net>
bacula/src/cats/create_sqlite3_database.in
bacula/src/cats/update_sqlite3_tables.in

index c8b35d48d5af355eb0dd151fff20b6682dc616e4..30bc0bdfba20f510f5b6156f50116e28d38a50d0 100644 (file)
@@ -8,5 +8,9 @@ cd @working_dir@
 db_name=@db_name@
 
 sqlite3 $* ${db_name}.db <<END-OF-DATA
+.databases
 END-OF-DATA
+# Allow non root access
+chown @dir_user@:@dir_group@ ${db_name}.db
+chmod 0640 ${db_name}.db
 exit 0
index 2d3cca53327cb5bc8e24abcad215d61db9b50b2f..6f6a43eb41ee4c224af72229a7a62839f75e7904 100644 (file)
@@ -1,9 +1,9 @@
 #!/bin/sh
 #
-# Shell script to update MySQL tables from Bacula Community version 5.0.x to 5.2.x
+# Shell script to update sqlite3 tables from Bacula Community version 5.0.x to 5.2.x
 #
 echo " "
-echo "This script will update a Bacula MySQL database from version 12 to 14"
+echo "This script will update a Bacula sqlite3 database from version 12 to 14"
 echo " which is needed to convert from Bacula Community version 5.0.x to 5.2.x"
 echo " "