Blame | Last modification | View Log | RSS feed
# shell include script
ZARAFA_LANG="${ZARAFA_USERSCRIPT_LOCALE:-${LC_MESSAGES:-en_US}}"
PATH=/bin:/usr/local/bin:/usr/bin
export ZARAFA_LANG PATH
if [ -z "${ZARAFA_GROUP_SCRIPTS}" ] ; then
exec >&2
echo "Do not execute this script directly"
exit 1
fi
if [ ! -d "${ZARAFA_GROUP_SCRIPTS}" ] ; then
exec >&2
echo "${ZARAFA_GROUP_SCRIPTS} does not exist or is not a directory"
exit 1
fi
if [ -z "${ZARAFA_GROUP}" -a -z "${ZARAFA_GROUPID}" ] ; then
exec >&2
echo "ZARAFA_GROUP and ZARAFA_GROUPID is not set."
exit 1
fi
find ${ZARAFA_GROUP_SCRIPTS} -maxdepth 1 -type f -perm -u=x -not -name \*~ -not -name \#\* -not -name \*.rpm\* -not -name \*.bak -not -name \*.old -exec {} \;