Compare commits

...

3 Commits

Author SHA1 Message Date
Christoph Schlosser
c7006319a6
Add ignore timezone and twice -R 2018-09-25 18:38:53 +02:00
Christoph Schlosser
e2827d98d7
Add -e option to only newer 2018-09-16 16:08:27 +02:00
Christoph Schlosser
0aee6b5f7a
Include option to upload only new files 2018-09-12 22:10:49 +02:00

View File

@ -32,6 +32,12 @@ else
PLUGIN_CHMOD=""
fi
if [ "$PLUGIN_ONLY_NEWER" = true ]; then
PLUGIN_ONLY_NEWER="-Rne --ignore-time"
else
PLUGIN_ONLY_NEWER=""
fi
if [ "$PLUGIN_CLEAN_DIR" = true ]; then
PLUGIN_CLEAN_DIR="rm -r $PLUGIN_DEST_DIR"
else
@ -57,5 +63,5 @@ lftp -e "set xfer:log 1; \
set ssl:verify-certificate $PLUGIN_VERIFY; \
set ssl:check-hostname $PLUGIN_VERIFY; \
$PLUGIN_CLEAN_DIR; \
mirror --verbose $PLUGIN_CHMOD -R $PLUGIN_INCLUDE_STR $PLUGIN_EXCLUDE_STR $(pwd)$PLUGIN_SRC_DIR $PLUGIN_DEST_DIR" \
mirror --verbose $PLUGIN_CHMOD $PLUGIN_ONLY_NEWER -R $PLUGIN_INCLUDE_STR $PLUGIN_EXCLUDE_STR $(pwd)$PLUGIN_SRC_DIR $PLUGIN_DEST_DIR" \
-u $FTP_USERNAME,$FTP_PASSWORD $PLUGIN_HOSTNAME