Monotone-Parent: 52ed7c612278254b79fdf946b5a0b54fe032dad4

Monotone-Revision: 1998a97de11b63460cd6ecf4448985e926b5d6d7

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2009-06-02T13:47:11
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Francis Lachapelle 2009-06-02 13:47:11 +00:00
parent 41af1f3145
commit c65ca12487
2 changed files with 9 additions and 7 deletions

View File

@ -44,18 +44,18 @@ if [ ! -x $DAEMON ]; then
exit 1
fi
if [ `/usr/bin/stat /var/run/sogo -c %U` != "sogo" ]; then
echo "/var/run/sogo is not owned by the sogo user."
if [ `/usr/bin/stat /var/run/sogo -c %U` != $USER ]; then
echo "/var/run/sogo is not owned by the ${USER}."
exit 1
fi
if [ `/usr/bin/stat /var/spool/sogo -c %U` != "sogo" ]; then
echo "/var/spool/sogo is not owned by the sogo user."
if [ `/usr/bin/stat /var/spool/sogo -c %U` != $USER ]; then
echo "/var/spool/sogo is not owned by the ${USER}."
exit 1
fi
if [ `/usr/bin/stat /var/log/sogo -c %U` != "sogo" ]; then
echo "/var/log/sogo is not owned by the sogo user."
if [ `/usr/bin/stat /var/log/sogo -c %U` != $USER ]; then
echo "/var/log/sogo is not owned by the ${USER}."
exit 1
fi

View File

@ -40,7 +40,9 @@ else
exit 1
fi
if [ -x $GNUSTEP_LOCAL_ADMIN_TOOLS/sogod ]; then
if [ -x $HOME/$GNUSTEP_USER_DIR_ADMIN_TOOLS/sogod ]; then
sogod="$HOME/$GNUSTEP_USER_DIR_ADMIN_TOOLS/sogod"
elif [ -x $GNUSTEP_LOCAL_ADMIN_TOOLS/sogod ]; then
sogod="$GNUSTEP_LOCAL_ADMIN_TOOLS/sogod"
elif [ -x $GNUSTEP_SYSTEM_ADMIN_TOOLS/sogod ]; then
sogod="$GNUSTEP_SYSTEM_ADMIN_TOOLS/sogod"