diff options
author | billf <billf@FreeBSD.org> | 2000-05-28 14:43:40 +0800 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 2000-05-28 14:43:40 +0800 |
commit | 707fda43750b9ee048989afee173fef11273162a (patch) | |
tree | 91a7f884b31454fe508fc28a75f9fa1bad0e6a31 /mail/postfix22 | |
parent | b33034c148a9c61ecf2859bdaeeb769813d048b9 (diff) | |
download | freebsd-ports-gnome-707fda43750b9ee048989afee173fef11273162a.tar.gz freebsd-ports-gnome-707fda43750b9ee048989afee173fef11273162a.tar.zst freebsd-ports-gnome-707fda43750b9ee048989afee173fef11273162a.zip |
If a user didn't have /usr/sbin in their path, this would have failed.
Diffstat (limited to 'mail/postfix22')
-rw-r--r-- | mail/postfix22/pkg-install | 12 |
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 |