minni cleanups.

This commit is contained in:
Axel Kittenberger 2008-11-02 21:21:53 +00:00
parent ad0a7398dd
commit 964e4fc847
2 changed files with 4 additions and 11 deletions

View File

@ -6,9 +6,9 @@
# This script will be called by lsyncd whenever it wants to sync something.
# It is supposed to be configured or even completly exchanged by you, to fit your needs.
#
# First parameter is "startup" in case lsyncd startups, "change" in normal operation.
# First parameter is "startup" in case lsyncd startups, "change" in normal operations.
# Second parameter is rsync source
# Third parameter is rsync destition.
# Third parameter is rsync destination.
#
# When this script returns a non-zero error code, lsyncd will either die
# or in the current implementation call it again with the parant directory if not in startup mode.
@ -18,7 +18,7 @@
set -e
###
# You can add additional options you want to call rsync here.
# You can add additional options you want to call rsync with here.
#
RSYNC_OPTIONS="--delete -lt";
@ -40,7 +40,6 @@ fi
while true; do
EXITVAL=0
echo /usr/bin/rsync $RSYNC_OPTIONS$SCOPE $EXCLUDE_FILE $2 $3 || EXITVAL=$?
/usr/bin/rsync $RSYNC_OPTIONS$SCOPE $EXCLUDE_FILE $2 $3 || EXITVAL=$?
case $EXITVAL in
0) # everything okay
@ -55,6 +54,6 @@ while true; do
done
###
# If you want to add some actions to be performed after rsync you can do here...
# If you want to add some actions to be performed after rsync you can do here.
#

View File

@ -383,12 +383,6 @@ bool action(int reason, char * src, char * dest)
dest,
NULL};
//argv[argc++] = s_strdup("--delete");
//if (exclude_file) {
// argv[argc++] = s_strdup("--exclude-from");
// argv[argc++] = s_strdup(exclude_file);
//}
if (flag_dryrun) {
return true;
}