diff options
author | clive <clive@FreeBSD.org> | 2001-02-26 03:08:51 +0000 |
---|---|---|
committer | clive <clive@FreeBSD.org> | 2001-02-26 03:08:51 +0000 |
commit | 58477e878256c569dbae14ae4d2cb66134736c52 (patch) | |
tree | 3ebaa101b8ffad23cb8a4bb143c50d9c6a106a97 /mail | |
parent | 400fc3828d69dd16168506b06033260bc2429cb0 (diff) | |
download | FreeBSD-ports-58477e878256c569dbae14ae4d2cb66134736c52.zip FreeBSD-ports-58477e878256c569dbae14ae4d2cb66134736c52.tar.gz |
Fix a typo which would results in wrong home directory of nullmail user.
Noted by: Sybolt de Boer <bolt@xs4all.nl>
Diffstat (limited to 'mail')
-rw-r--r-- | mail/nullmailer/pkg-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/nullmailer/pkg-install b/mail/nullmailer/pkg-install index 9832b20..287d853 100644 --- a/mail/nullmailer/pkg-install +++ b/mail/nullmailer/pkg-install @@ -51,7 +51,7 @@ if [ x"$2" = xPRE-INSTALL ]; then else echo "You need a user \"${user}\"." if yesno "Would you like me to create it" y; then - /usr/sbin/pw useradd ${user} -u 522 -g ${group} -h - -d ${PREFIX}/var/nullmailer \ + /usr/sbin/pw useradd ${user} -u 522 -g ${group} -h - -d ${PKG_PREFIX}/var/nullmailer \ -s /bin/sh -c "Nullmailer Mail System" || exit echo "Done." else |