Skip to content
Snippets Groups Projects
Commit c0140aea authored by micah's avatar micah :speech_balloon:
Browse files

fixed ignore_version default value

parent 4af05505
Branches
Tags
No related merge requests found
...@@ -2,6 +2,8 @@ version 0.9.6 -- unreleased ...@@ -2,6 +2,8 @@ version 0.9.6 -- unreleased
backupninja changes backupninja changes
handler changes handler changes
rdiff:
. Fixed ignore_version default value missing
wget: wget:
. New handler from rhatto designed to incrementally pull content from . New handler from rhatto designed to incrementally pull content from
a website to a local folder, based on the rsync handler a website to a local folder, based on the rsync handler
......
...@@ -77,6 +77,7 @@ getconf options ...@@ -77,6 +77,7 @@ getconf options
getconf testconnect yes getconf testconnect yes
getconf nicelevel 0 getconf nicelevel 0
getconf bwlimit getconf bwlimit
getconf ignore_version no
setsection source setsection source
getconf type; sourcetype=$type getconf type; sourcetype=$type
...@@ -127,7 +128,7 @@ if [ "$testconnect" = "yes" ] || [ "${test}" -eq 1 ]; then ...@@ -127,7 +128,7 @@ if [ "$testconnect" = "yes" ] || [ "${test}" -eq 1 ]; then
test_connection $destuser $desthost test_connection $destuser $desthost
fi fi
if [ $ignore_version != "yes" ]; then if [ "$ignore_version" != "yes" ]; then
# see that rdiff-backup has the same version at the source and destination # see that rdiff-backup has the same version at the source and destination
sourceversion=`get_version $sourceuser $sourcehost` sourceversion=`get_version $sourceuser $sourcehost`
destversion=`get_version $destuser $desthost` destversion=`get_version $destuser $desthost`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment