summaryrefslogtreecommitdiff
path: root/mail/postfix22
diff options
context:
space:
mode:
authorBill Fumerola <billf@FreeBSD.org>2000-05-28 06:43:40 +0000
committerBill Fumerola <billf@FreeBSD.org>2000-05-28 06:43:40 +0000
commitd59cb537d5cfff03ea2e66e28e12c6d1c18d50a2 (patch)
tree631ef0da50fd4bd362d7ef512d1b14694b3908ae /mail/postfix22
parentUpdate to version 0.9.2. (diff)
If a user didn't have /usr/sbin in their path, this would have failed.
Notes
Notes: svn path=/head/; revision=28828
Diffstat (limited to 'mail/postfix22')
-rw-r--r--mail/postfix22/pkg-install12
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/postfix22/pkg-install b/mail/postfix22/pkg-install
index 4ed960fb5bdc..dcc7c370d885 100644
--- a/mail/postfix22/pkg-install
+++ b/mail/postfix22/pkg-install
@@ -34,12 +34,12 @@ yesno() {
}
if [ x"$2" = xPRE-INSTALL ]; then
- if pw groupshow "${group}" 2>/dev/null; then
+ if /usr/sbin/pw groupshow "${group}" 2>/dev/null; then
echo "You already have a group \"${group}\", so I will use it."
else
echo "You need a group \"${group}\"."
if yesno "Would you like me to create it" y; then
- pw groupadd ${group} -h - || exit
+ /usr/sbin/pw groupadd ${group} -h - || exit
echo "Done."
else
echo "Please create it, and try again."
@@ -47,12 +47,12 @@ if [ x"$2" = xPRE-INSTALL ]; then
fi
fi
- if pw groupshow "${group2}" 2>/dev/null; then
+ if /usr/sbin/pw groupshow "${group2}" 2>/dev/null; then
echo "You already have a group \"${group2}\", so I will use it."
else
echo "You need a group \"${group2}\"."
if yesno "Would you like me to create it" y; then
- pw groupadd ${group2} -h - || exit
+ /usr/sbin/pw groupadd ${group2} -h - || exit
echo "Done."
else
echo "Please create it, and try again."
@@ -60,12 +60,12 @@ if [ x"$2" = xPRE-INSTALL ]; then
fi
fi
- if pw user show "${user}" 2>/dev/null; then
+ if /usr/sbin/pw user show "${user}" 2>/dev/null; then
echo "You already have a user \"${user}\", so I will use it."
else
echo "You need a user \"${user}\"."
if yesno "Would you like me to create it" y; then
- pw useradd ${user} -g ${group} -h - -d /nonexistent \
+ /usr/sbin/pw useradd ${user} -g ${group} -h - -d /nonexistent \
-s /nonexistent -c "Postfix Mail System" || exit
echo "Done."
else