From d2cd0c48f34fa0249bc4a20deb354cf4f8c6fe8a Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sat, 15 Jan 2011 02:04:31 +0100 Subject: [PATCH] begin to remove support for backing up to remote hosts Signed-off-by: Nico Schottelius --- ccollect | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/ccollect b/ccollect index cd8cf99..f376ca0 100755 --- a/ccollect +++ b/ccollect @@ -88,16 +88,6 @@ add_name() awk "{ print \"[${name}] \" \$0 }" } -# -# Prepend "ssh ${remote_host}", if backing up to a remote host -# -pcmd() -{ - [ "${remote_host}" ] && set -- "ssh" "${remote_host}" "$@" - - "$@" -} - # # ssh-"feature": we cannot do '... read ...; ssh ...; < file', # because ssh reads stdin! -n does not work -> does not ask for password