From 5cdc840fabac4796b5e8d1207b7c791471ac96a6 Mon Sep 17 00:00:00 2001 From: deajan Date: Fri, 19 Feb 2016 09:34:43 +0100 Subject: [PATCH] Added execution flag SYNC_ATTR=yes --- dev/debug_osync.sh | 2 +- dev/n_osync.sh | 2 +- osync.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev/debug_osync.sh b/dev/debug_osync.sh index 84c27a5..89b47d7 100755 --- a/dev/debug_osync.sh +++ b/dev/debug_osync.sh @@ -1620,7 +1620,7 @@ function sync_attrs { local retval= - if [ "$SYNC_ATTR" -ne 1 ]; then + if [ "$SYNC_ATTR" != "yes" ]; then return 0 fi diff --git a/dev/n_osync.sh b/dev/n_osync.sh index 7d16bf2..00ce5ec 100755 --- a/dev/n_osync.sh +++ b/dev/n_osync.sh @@ -694,7 +694,7 @@ function sync_attrs { local retval= - if [ "$SYNC_ATTR" -ne 1 ]; then + if [ "$SYNC_ATTR" != "yes" ]; then return 0 fi diff --git a/osync.sh b/osync.sh index 4881732..077535e 100755 --- a/osync.sh +++ b/osync.sh @@ -1491,7 +1491,7 @@ function sync_attrs { local retval= - if [ "$SYNC_ATTR" -ne 1 ]; then + if [ "$SYNC_ATTR" != "yes" ]; then return 0 fi