Actually define $BIGLIST, and fix the logic a bit.

This commit is contained in:
garbled 2001-04-23 09:07:49 +00:00
parent 69184ba957
commit 85b2082906
1 changed files with 13 additions and 3 deletions

View File

@ -1,18 +1,27 @@
#!/bin/sh
# $NetBSD: script1,v 1.1 2001/03/06 21:21:07 garbled Exp $
# $NetBSD: script1,v 1.2 2001/04/23 09:07:49 garbled Exp $
BIGLIST="exim postfix-current sendmail88"
grep sendmail/sendmail /etc/mailer.conf >/dev/null
if [ "$?" = "0" ]; then
STATA="$?"
if [ "$STATA" = "0" ]; then
echo "sendmail"
echo "postfix"
fi
grep postfix/sendmail /etc/mailer.conf >/dev/null
if [ "$?" = "0" ]; then
STATB="$?"
if [ "$STATB" = "0" ]; then
echo "postfix"
echo "sendmail"
fi
if [ "$STATA" != "0" -a "$STATB" != "0" ]; then
echo "sendmail"
echo "postfix"
fi
for i in $BIGLIST
do
pkg_info -e $i >/dev/null
@ -20,3 +29,4 @@ do
echo "$i"
fi
done