freebsd-ports/mail/qpopper/pkg-req

14 lines
353 B
Text
Raw Normal View History

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
1997-10-10 09:38:47 +02:00
exit 0