aboutsummaryrefslogtreecommitdiff
path: root/mail/postfix28/pkg-install
diff options
context:
space:
mode:
Diffstat (limited to 'mail/postfix28/pkg-install')
-rw-r--r--mail/postfix28/pkg-install3
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/postfix28/pkg-install b/mail/postfix28/pkg-install
index 3ef249b885b1..8ecea1626d2b 100644
--- a/mail/postfix28/pkg-install
+++ b/mail/postfix28/pkg-install
@@ -4,13 +4,14 @@
#
PKG_PREFIX=${PKG_PREFIX:=/usr/local}
+BATCH=${BATCH:=no}
ask() {
local question default answer
question=$1
default=$2
- if [ -z "${PACKAGE_BUILDING}" ]; then
+ if [ -z "${PACKAGE_BUILDING}" -a x${BATCH} = xno ]; then
read -p "${question} [${default}]? " answer
fi
if [ x${answer} = x ]; then