From 29e565ebbab0366c36b22382a19d791d0a79b561 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Thu, 24 Dec 2009 21:54:31 +0100 Subject: [PATCH] Clarify catalog grant permissions message --- bacula/src/cats/grant_mysql_privileges.in | 2 +- bacula/src/cats/grant_postgresql_privileges.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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." -- 2.39.5