From f7fdb123105c081bbfed7c9fcb29e7f6cf24aee9 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sun, 15 Jun 2008 12:12:01 +0100 Subject: [PATCH] Make postinst group modification call less quiet. Organization: Straylight/Edgeware From: Richard Kettlewell --- debian/postinst.disorder-server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/postinst.disorder-server b/debian/postinst.disorder-server index 9e51648..458cc79 100755 --- a/debian/postinst.disorder-server +++ b/debian/postinst.disorder-server @@ -28,7 +28,7 @@ add_jukebox_user() { --no-create-home jukebox # If it happens that there's no audio group we don't fail; perhaps only # network play was required. - adduser --quiet jukebox audio || true + adduser jukebox audio || true } configure_init_d() { -- [mdw]