From 9a79f435372c4daf93aa6c25932f355a7162a42c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Beaupr=C3=A9?= Date: Mon, 6 Oct 2008 22:48:58 +0000 Subject: [PATCH] fix parameter expansion in postconf See: #1029 --- install/alternc.install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/alternc.install b/install/alternc.install index 8e275499..d751ef58 100644 --- a/install/alternc.install +++ b/install/alternc.install @@ -218,12 +218,12 @@ fi # configure postfix appropriatly for our needs" while read line do - postconf -e $line + postconf -e "$line" done < /etc/alternc/postfix.cf while read line do - postconf -e $line + postconf -e "$line" done <