diff options
author | Joerg Jaspert <joerg@debian.org> | 2009-12-28 16:22:48 +0100 |
---|---|---|
committer | Joerg Jaspert <joerg@debian.org> | 2009-12-28 16:22:48 +0100 |
commit | c8b0797f49ed9af655f5c7a6e57ffd2075fdb293 (patch) | |
tree | acbda96801458b5f4b161a26242190f39f146d34 | |
parent | f1e4d734e5e5b2fe4a64a1e60739ae0cca2e5e21 (diff) |
ftpsync
add new option sync:mhop
Signed-off-by: Joerg Jaspert <joerg@debian.org>
-rwxr-xr-x | bin/ftpsync | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/ftpsync b/bin/ftpsync index c510f36..b6d9d95 100755 --- a/bin/ftpsync +++ b/bin/ftpsync @@ -56,6 +56,7 @@ VERSION="80286" # stage1 Only do stage1 sync # stage2 Only do stage2 sync # all Do a complete sync +# mhop Do a mhop sync, usually additionally to stage1 # archive:foo Sync archive foo (if config for foo is available) # callback Call back when done (needs proper ssh setup for this to # work). It will always use the "command" callback:$HOSTNAME @@ -89,6 +90,9 @@ check_commandline() { sync:all) SYNCALL="true" ;; + sync:mhop) + SYNCMHOP="true" + ;; *) echo "Unknown option ${1} ignored" ;; @@ -280,6 +284,8 @@ SYNCSTAGE1=${SYNCSTAGE1:-"false"} SYNCSTAGE2=${SYNCSTAGE2:-"false"} # Do we sync all? SYNCALL=${SYNCALL:-"true"} +# Do we have a mhop sync? +SYNCMHOP=${SYNCMHOP:-"false"} # Do we callback? SYNCCALLBACK=${SYNCCALLBACK:-"false"} # If we call back we need some more options defined in the config file. |