mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
4964b5a918
as its main goal. PR: 18782 Submitted by: Marco Rodrigues <drkangel@snickers.org>
14 lines
353 B
Plaintext
14 lines
353 B
Plaintext
if [ "$2" != "INSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
if ! id -u pop > /dev/null 2>&1; then
|
|
echo "You need an account \"pop\" to install this package."
|
|
echo "Please add it by hand (try \"man vipw\") and try again."
|
|
echo ""
|
|
echo "An example passwd entry is:"
|
|
echo "pop:*:68:6::0:0:Post Office Owner:/nonexistent:/nonexistent"
|
|
echo ""
|
|
exit 1
|
|
fi
|
|
exit 0
|