begin to remove remote_host option
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
410cf58067
commit
758e5a9059
1 changed files with 2 additions and 15 deletions
15
ccollect
15
ccollect
|
@ -303,7 +303,7 @@ while [ "${source_no}" -lt "${no_sources}" ]; do
|
||||||
# Read source configuration
|
# Read source configuration
|
||||||
#
|
#
|
||||||
for opt in verbose very_verbose summary exclude rsync_options \
|
for opt in verbose very_verbose summary exclude rsync_options \
|
||||||
delete_incomplete remote_host rsync_failure_codes \
|
delete_incomplete rsync_failure_codes \
|
||||||
mtime quiet_if_down ; do
|
mtime quiet_if_down ; do
|
||||||
if [ -f "${backup}/${opt}" -o -f "${backup}/no_${opt}" ]; then
|
if [ -f "${backup}/${opt}" -o -f "${backup}/no_${opt}" ]; then
|
||||||
eval c_$opt=\"${backup}/$opt\"
|
eval c_$opt=\"${backup}/$opt\"
|
||||||
|
@ -358,20 +358,7 @@ while [ "${source_no}" -lt "${no_sources}" ]; do
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#
|
|
||||||
# Set pre-cmd, if we backup to a remote host.
|
|
||||||
#
|
|
||||||
if [ -f "${c_remote_host}" ]; then
|
|
||||||
remote_host="$(cat "${c_remote_host}")"; ret="$?"
|
|
||||||
if [ "${ret}" -ne 0 ]; then
|
|
||||||
_exit_err "Remote host file ${c_remote_host} is unreadable. Skipping."
|
|
||||||
fi
|
|
||||||
destination="${remote_host}:${ddir}"
|
|
||||||
else
|
|
||||||
remote_host=""
|
|
||||||
destination="${ddir}"
|
destination="${ddir}"
|
||||||
fi
|
|
||||||
export remote_host
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Parameters: ccollect defaults, configuration options, user options
|
# Parameters: ccollect defaults, configuration options, user options
|
||||||
|
|
Loading…
Reference in a new issue