Don't log "manual launch of update_domain" if we don't do it...

This commit is contained in:
Axel ROGER 2013-04-05 15:14:14 +00:00
parent 0a5856e4c5
commit c18d1024c0
1 changed files with 7 additions and 3 deletions

View File

@ -4,7 +4,11 @@
. /etc/alternc/local.sh
test -x /usr/bin/logger && /usr/bin/logger -t ALTERNC Panel manual launch update_domain
test -e "$INOTIFY_UPDATE_DOMAIN" && /usr/lib/alternc/update_domains.sh
LOGGER="/usr/bin/logger"
if [ -e "$INOTIFY_UPDATE_DOMAIN" ] ; then
if [ -x "$LOGGER" ] ; then
$LOGGER -t ALTERNC Panel manual launch update_domain
fi
/usr/lib/alternc/update_domains.sh
fi