]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Modify catalog scripts to have an easier packaging integration,
authorEric Bollengier <eric@eb.homelinux.org>
Thu, 28 Aug 2008 11:23:21 +0000 (11:23 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Thu, 28 Aug 2008 11:23:21 +0000 (11:23 +0000)
     using default variables.
     Make difference between SQLite3 and SQLite in db_get_type()

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7514 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/cats/grant_mysql_privileges.in
bacula/src/cats/grant_postgresql_privileges.in
bacula/src/cats/make_mysql_tables.in
bacula/src/cats/make_postgresql_tables.in
bacula/src/cats/sqlite.c
bacula/technotes-2.5

index bf89fe060ad3a567daad37078498bb1209bfb4c2..bb53b46a94e8baa90c6ed996cf8442e6d78bb9bf 100644 (file)
@@ -2,19 +2,19 @@
 #
 # shell script to grant privileges to the bacula database
 #
-USER=@db_user@
+db_user=${db_user-@db_user@}
 bindir=@SQL_BINDIR@
-db_name=@db_name@
+db_name=${db_name-@db_name@}
 
 if $bindir/mysql $* -u root -f <<END-OF-DATA
 use mysql
-grant all privileges on ${db_name}.* to ${USER}@localhost;
-grant all privileges on ${db_name}.* to ${USER}@"%";
+grant all privileges on ${db_name}.* to ${db_user}@localhost;
+grant all privileges on ${db_name}.* to ${db_user}@"%";
 select * from user;
 flush privileges;
 END-OF-DATA
 then
-   echo "Privileges for ${USER} granted on ${db_name}."
+   echo "Privileges for ${db_user} granted on ${db_name}."
    exit 0
 else
    echo "Error creating privileges."
index 3be65e7c07f4d40d2b21dee028c3ac718dd639a5..c3d6e106c8b9d7a2f5a745609d4cb724d5e6d36e 100644 (file)
@@ -2,60 +2,60 @@
 #
 # shell script to grant privileges to the bacula database
 #
-USER=@db_user@
+db_user=${db_user-@db_user@}
 bindir=@SQL_BINDIR@
-db_name=@db_name@
+db_name=${db_name-@db_name@}
 
 if $bindir/psql -f - -d ${db_name} $* <<END-OF-DATA
 
-create user ${USER};
+create user ${db_user};
 
 -- for tables
-grant all on unsavedfiles to ${USER};
-grant all on basefiles   to ${USER};
-grant all on jobmedia    to ${USER};
-grant all on file        to ${USER};
-grant all on job         to ${USER};
-grant all on media       to ${USER};
-grant all on client      to ${USER};
-grant all on pool        to ${USER};
-grant all on fileset     to ${USER};
-grant all on path        to ${USER};
-grant all on filename    to ${USER};
-grant all on counters    to ${USER};
-grant all on version     to ${USER};
-grant all on cdimages    to ${USER};
-grant all on mediatype   to ${USER};
-grant all on storage     to ${USER};
-grant all on device      to ${USER};
-grant all on status      to ${USER};
-grant all on location    to ${USER};
-grant all on locationlog  to ${USER};
-grant all on log         to ${USER};
-grant all on jobstat     to ${USER};
+grant all on unsavedfiles to ${db_user};
+grant all on basefiles   to ${db_user};
+grant all on jobmedia    to ${db_user};
+grant all on file        to ${db_user};
+grant all on job         to ${db_user};
+grant all on media       to ${db_user};
+grant all on client      to ${db_user};
+grant all on pool        to ${db_user};
+grant all on fileset     to ${db_user};
+grant all on path        to ${db_user};
+grant all on filename    to ${db_user};
+grant all on counters    to ${db_user};
+grant all on version     to ${db_user};
+grant all on cdimages    to ${db_user};
+grant all on mediatype   to ${db_user};
+grant all on storage     to ${db_user};
+grant all on device      to ${db_user};
+grant all on status      to ${db_user};
+grant all on location    to ${db_user};
+grant all on locationlog  to ${db_user};
+grant all on log         to ${db_user};
+grant all on jobstat     to ${db_user};
 
 -- for sequences on those tables
 
-grant select, update on filename_filenameid_seq    to ${USER};
-grant select, update on path_pathid_seq           to ${USER};
-grant select, update on fileset_filesetid_seq     to ${USER};
-grant select, update on pool_poolid_seq           to ${USER};
-grant select, update on client_clientid_seq       to ${USER};
-grant select, update on media_mediaid_seq         to ${USER};
-grant select, update on job_jobid_seq             to ${USER};
-grant select, update on file_fileid_seq           to ${USER};
-grant select, update on jobmedia_jobmediaid_seq    to ${USER};
-grant select, update on basefiles_baseid_seq      to ${USER};
-grant select, update on storage_storageid_seq     to ${USER};
-grant select, update on mediatype_mediatypeid_seq  to ${USER};
-grant select, update on device_deviceid_seq       to ${USER};
-grant select, update on location_locationid_seq    to ${USER};
-grant select, update on locationlog_loclogid_seq   to ${USER};
-grant select, update on log_logid_seq             to ${USER};
+grant select, update on filename_filenameid_seq    to ${db_user};
+grant select, update on path_pathid_seq           to ${db_user};
+grant select, update on fileset_filesetid_seq     to ${db_user};
+grant select, update on pool_poolid_seq           to ${db_user};
+grant select, update on client_clientid_seq       to ${db_user};
+grant select, update on media_mediaid_seq         to ${db_user};
+grant select, update on job_jobid_seq             to ${db_user};
+grant select, update on file_fileid_seq           to ${db_user};
+grant select, update on jobmedia_jobmediaid_seq    to ${db_user};
+grant select, update on basefiles_baseid_seq      to ${db_user};
+grant select, update on storage_storageid_seq     to ${db_user};
+grant select, update on mediatype_mediatypeid_seq  to ${db_user};
+grant select, update on device_deviceid_seq       to ${db_user};
+grant select, update on location_locationid_seq    to ${db_user};
+grant select, update on locationlog_loclogid_seq   to ${db_user};
+grant select, update on log_logid_seq             to ${db_user};
 
 END-OF-DATA
 then
-   echo "Privileges for ${USER} granted on ${db_name}."
+   echo "Privileges for ${db_user} granted on ${db_name}."
    exit 0
 else
    echo "Error creating privileges."
index 32a5b4d9843549ca14e05942ef6a8392025bb208..14a1d6c012923cdbb4c7b49ee7266bed438edcb8 100644 (file)
@@ -3,7 +3,7 @@
 # shell script to create Bacula MySQL tables
 #
 bindir=@SQL_BINDIR@
-db_name=@db_name@
+db_name=${db_name-@db_name@}
 
 if $bindir/mysql $* -f <<END-OF-DATA
 USE ${db_name};
index d63e2de69912d08b1e3768022c5eccbce3b87836..9e1518e767650b78c4b552cd24c73b735211bdf3 100644 (file)
@@ -3,7 +3,7 @@
 # shell script to create Bacula PostgreSQL tables
 #
 bindir=@SQL_BINDIR@
-db_name=@db_name@
+db_name=${db_name-@db_name@}
 
 $bindir/psql -f - -d ${db_name} $* <<END-OF-DATA
 
index af9860091feb90b3e79546bddd07f8d2911b1cc0..b6e78359de5e699d93168f7af2ca279d57bc8f05 100644 (file)
@@ -59,14 +59,17 @@ static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
 
 int QueryDB(const char *file, int line, JCR *jcr, B_DB *db, char *select_cmd);
 
-
 /*
  * Retrieve database type
  */
 const char *
 db_get_type(void)
 {
+#ifdef HAVE_SQLITE3
+   return "SQLite3";
+#else
    return "SQLite";
+#endif
 }
 
 /*
index 35b0f93fef9f93dba826d0df87e861b4f3dd27b7..cf913e2c7405c39e4179cc604492feae5bfada89 100644 (file)
@@ -32,6 +32,10 @@ separator in console (!$%&'()*+,-/:;<>?[]^`{|}~)
 
 
 General:
+28Aug08
+ebl  Modify catalog scripts to have an easier packaging integration,
+     using default variables.
+     Make difference between SQLite3 and SQLite in db_get_type()
 27Aug08
 kes  Apply most of changes in a patch from:
       Michael Stapelberg <michael+bacula@stapelberg.de>