blob: b6cb9cfe0763edfb089e5540ee0a5d0139233eba (
plain) (
tree)
|
|
#!/bin/sh
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 (assuming uid 68 is available) is;"
echo "pop:*:68:1::0:0:Post Office Owner:/nonexistent:/nonexistent"
echo ""
exit 1
fi
usrdir=${PREFIX}/etc/popper
if [ ! -d $usrdir ]; then
mkdir -p $usrdir
fi
chown pop.daemon $usrdir
chmod 700 $usrdir
|