]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
Fix #9686 Grant PROCESS privilege to bacula user to allow catalog backup
authorEric Bollengier <eric@baculasystems.com>
Mon, 5 Dec 2022 08:41:48 +0000 (09:41 +0100)
committerEric Bollengier <eric@baculasystems.com>
Sat, 18 Feb 2023 09:21:25 +0000 (10:21 +0100)
bacula/src/cats/grant_mysql_privileges.in

index 0921c6d557a3807b38eac6653fd35149879ab517..6f4cc950488bfd3e85d0daefe73002c2a77229f0 100644 (file)
@@ -28,6 +28,7 @@ fi
 if $bindir/mysql $* -u root -f <<END-OF-DATA
 use mysql
 grant all privileges on ${db_name}.* to ${db_user}@"%" ${ssl_options};
+grant process on *.* to %{db_user}@"%" ${ssl_options};
 select * from user;
 flush privileges;
 END-OF-DATA