From b189656be475a71e0e05242ace5746dae3db4889 Mon Sep 17 00:00:00 2001 From: Greg Sabino Mullane Date: Sat, 21 Mar 2015 23:16:54 -0400 Subject: [PATCH] Respect the QUIET flag when creating the superuser. --- bucardo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bucardo b/bucardo index ccf037a29..e1fc6d7e5 100755 --- a/bucardo +++ b/bucardo @@ -8616,7 +8616,7 @@ sub install { ## If no number 1 seen, no bucardo user, so create it if ($res !~ /1/) { - print "Creating superuser 'bucardo'\n"; + $QUIET or print "Creating superuser 'bucardo'\n"; ## Generate a new random password my $pass = generate_password(); -- 2.39.5