Fixed typo $PRESERVE_ACL
This commit is contained in:
parent
706e6a531b
commit
750c43ed1a
5
osync.sh
5
osync.sh
|
@ -1,10 +1,9 @@
|
||||||
|
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
###### Osync - Rsync based two way sync engine with fault tolerance
|
###### Osync - Rsync based two way sync engine with fault tolerance
|
||||||
###### (L) 2013 by Orsiris "Ozy" de Jong (www.netpower.fr)
|
###### (L) 2013 by Orsiris "Ozy" de Jong (www.netpower.fr)
|
||||||
OSYNC_VERSION=0.99preRC2
|
OSYNC_VERSION=0.99preRC2
|
||||||
OSYNC_BUILD=2508201301
|
OSYNC_BUILD=1009201301
|
||||||
|
|
||||||
DEBUG=no
|
DEBUG=no
|
||||||
SCRIPT_PID=$$
|
SCRIPT_PID=$$
|
||||||
|
@ -1380,7 +1379,7 @@ function Init
|
||||||
|
|
||||||
## Set rsync options
|
## Set rsync options
|
||||||
RSYNC_ARGS="-"
|
RSYNC_ARGS="-"
|
||||||
if [ "$PRESERVE_ACLS" == "yes" ]
|
if [ "$PRESERVE_ACL" == "yes" ]
|
||||||
then
|
then
|
||||||
RSYNC_ARGS=$RSYNC_ARGS"A"
|
RSYNC_ARGS=$RSYNC_ARGS"A"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue