diff options
-rwxr-xr-x | ctdb/config/events.d/60.nfs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ctdb/config/events.d/60.nfs b/ctdb/config/events.d/60.nfs index f424f8cb29..038adbb094 100755 --- a/ctdb/config/events.d/60.nfs +++ b/ctdb/config/events.d/60.nfs @@ -130,8 +130,7 @@ case "$1" in # clients need notifications LAST_UPDATE=`stat --printf="%Y" $CTDB_VARDIR/state/statd/update-trigger` CURRENT_TIME=`date +"%s"` - expr "$CURRENT_TIME" ">" "(" "$LAST_UPDATE" "+" "60" ")" >/dev/null 2>/dev/null - [ $? = "0" ] && { + [ $CURRENT_TIME -ge $(($LAST_UPDATE + 60)) ] && { mkdir -p $CTDB_VARDIR/state/statd touch $CTDB_VARDIR/state/statd/update-trigger $CTDB_BASE/statd-callout updatelocal & |