From: Kern Sibbald Date: Thu, 24 Dec 2009 20:54:31 +0000 (+0100) Subject: Clarify catalog grant permissions message X-Git-Tag: Release-5.0.0~121 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=53c0196b5caebac6f325b51b51d229453255b2b2;p=bacula%2Fbacula Clarify catalog grant permissions message --- diff --git a/bacula/src/cats/grant_mysql_privileges.in b/bacula/src/cats/grant_mysql_privileges.in index d73fa3805e..6ff5969193 100644 --- a/bacula/src/cats/grant_mysql_privileges.in +++ b/bacula/src/cats/grant_mysql_privileges.in @@ -14,7 +14,7 @@ select * from user; flush privileges; END-OF-DATA then - echo "Privileges for ${db_user} granted on ${db_name}." + echo "Privileges for user ${db_user} granted on database ${db_name}." exit 0 else echo "Error creating privileges." diff --git a/bacula/src/cats/grant_postgresql_privileges.in b/bacula/src/cats/grant_postgresql_privileges.in index d426874e97..499381e9d3 100644 --- a/bacula/src/cats/grant_postgresql_privileges.in +++ b/bacula/src/cats/grant_postgresql_privileges.in @@ -55,7 +55,7 @@ grant select, update on log_logid_seq to ${db_user}; END-OF-DATA then - echo "Privileges for ${db_user} granted on ${db_name}." + echo "Privileges for user ${db_user} granted on database ${db_name}." exit 0 else echo "Error creating privileges."