mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
3acc3fb9e4
PR: 17180 Submitted by: maintainer
31 lines
395 B
Plaintext
31 lines
395 B
Plaintext
# $FreeBSD$
|
|
#
|
|
|
|
if [ "$2" != "PRE-INSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
PATH=/bin:/usr/bin
|
|
|
|
use_vipw () {
|
|
|
|
cat << EOF
|
|
|
|
You need an account "pop" to install this package.
|
|
Please add it by hand (try "man vipw") and try again.
|
|
|
|
An example passwd entry is:
|
|
pop:*:68:6::0:0:Post Office Owner:/nonexistent:/nonexistent
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
if ! id -u "pop" > /dev/null 2>&1; then
|
|
use_vipw
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|
|
|