diff options
author | Bill Fumerola <billf@FreeBSD.org> | 2000-05-28 06:43:40 +0000 |
---|---|---|
committer | Bill Fumerola <billf@FreeBSD.org> | 2000-05-28 06:43:40 +0000 |
commit | d59cb537d5cfff03ea2e66e28e12c6d1c18d50a2 (patch) | |
tree | 631ef0da50fd4bd362d7ef512d1b14694b3908ae /mail/postfix26 | |
parent | Update 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/postfix26')
-rw-r--r-- | mail/postfix26/pkg-install | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/postfix26/pkg-install b/mail/postfix26/pkg-install index 4ed960fb5bdc..dcc7c370d885 100644 --- a/mail/postfix26/pkg-install +++ b/mail/postfix26/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 |