blob: 692e7304b97ce2265a098c6a8cf0061f095c876d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
--- doc/sendmail/configure.orig Wed Jun 4 16:46:57 2003
+++ doc/sendmail/configure Tue Jul 1 09:41:05 2003
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!%LOCALBASE%/bin/bash
#
# $Id: configure,v 1.25 2003/04/10 15:47:33 cvser Exp $
#
@@ -134,7 +134,7 @@
# Read transport
POS=`$GREP -i PidFile $DAEMON_INI | $GREP -v ";"`
-if [ "x$POS" = "x" ] ; then
+if [ "x" = "x" ] ; then
echo
echo -n "Daemon pidfile not defined in ini-file ..."
if [ $VER -eq 1 ] ; then
@@ -377,8 +377,13 @@
echo "Edit one of configuration files and try again."
exit 1
fi
+ else
+ echo "Press Enter"
+ read INPUT
fi
else
+ echo "Press Enter"
+ read INPUT
FILTER_TIMEOUT=0
fi
|