From 67347f7806c975fca85d89e873ba36d9dd689a72 Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Wed, 20 Jan 2010 15:01:31 +0100 Subject: [PATCH] [email_account] postfix reload after config change Use invoke-rc.d postfix reload instead of invoke-rc.d postfix restart --- email_account/email_account | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/email_account/email_account b/email_account/email_account index a0b3cce..2cdadd7 100755 --- a/email_account/email_account +++ b/email_account/email_account @@ -341,10 +341,10 @@ restore_cyrus_state () echo "Restarting cyrus failed" exit 1 fi - invoke-rc.d --quiet postfix restart + invoke-rc.d --quiet postfix reload if [ ! $? -eq 0 ] then - echo "Restarting postfix failed" + echo "Reloading postfix failed" exit 1 fi }