From 1133371f521bd482d1bb1ae89b97060d8a06bb02 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 5 Jul 2010 11:15:13 +0200 Subject: put: Update, use sftp instead of scp --- etc/functions/put | 75 +++++++++++++++++++++++++++---------------------------- 1 file changed, 37 insertions(+), 38 deletions(-) (limited to 'etc/functions') diff --git a/etc/functions/put b/etc/functions/put index 66fd956..63f21aa 100644 --- a/etc/functions/put +++ b/etc/functions/put @@ -6,7 +6,7 @@ ## License: WTFPL typeset hostname -typeset -a ssh_options hosts +typeset -a hosts typeset target_dir server_prefix typeset file remote_file illegal typeset -i n_hosts n_ping n_curl @@ -16,22 +16,21 @@ if [[ -z ${commands[curl]} ]]; then print -P "%B%F{yellow}curl not present, won't be able to check upload success%f%b" fi -function put_aneurysm () { +function put_aneurysm { hostname='derf.homelinux.org' - ssh_options=(-q) + ssh_name='aneurysm' target_dir='public_html/tmp/' server_prefix='http://derf.homelinux.org/tmp/' } -function put_becquerel () { - hostname='becquerel.illdefined.org' - ssh_options=(-q) - target_dir='www/tmp/' - server_prefix='http://static.illdefined.org/~derf/tmp/' +function put_chaosdorf { + hostname='frontend.chaosdorf.de' + ssh_name='chaosdorf-web' + target_dir='public_html/tmp/' + server_prefix='http://www.chaosdorf.de/~derf/tmp/' } -hosts=(aneurysm becquerel) -hosts_nossl=(becquerel) +hosts=(aneurysm chaosdorf) while [[ ${1} == -* ]] { case ${1} in @@ -43,36 +42,36 @@ while [[ ${1} == -* ]] { shift } +if [[ ! -f ${1} ]] { + echo "${1}: No such file" >&2 + return 1 +} n_hosts=${#hosts} -if [[ -f ${1} ]] { - file=${1} - while (( ${#hosts} )) { - remote_file=${file:t} - put_${hosts[1]} - ping -c 1 ${hostname} &> /dev/null || ping6 -c 1 ${hostname} &> /dev/null - if (( ? == 0 )) { - if [[ ${remote_file} == ${~illegal} ]] { - remote_file=${remote_file:r} - } - scp ${ssh_options} ${file} ${hostname}:${target_dir}/${remote_file} - ssh ${ssh_options} ${hostname} "chmod 644 ${target_dir}${remote_file}" - if $(curl -fI ${server_prefix}${remote_file} &> /dev/null); then - echo ${server_prefix}${remote_file} - return 0 - else - (( n_curl++ )) - fi - } else { - (( n_ping++ )) +file=${1} + +while (( ${#hosts} )) { + remote_file=${file:t} + put_${hosts[1]} + ping -c 1 ${hostname} &> /dev/null || ping6 -c 1 ${hostname} &> /dev/null + if (( ? == 0 )) { + if [[ ${remote_file} == ${~illegal} ]] { + remote_file=${remote_file:r} } - shift hosts + lftp -c "connect sftp://${ssh_name}; cd ${target_dir}; put ${file}"\ +" -o ${remote_file}; chmod 644 ${remote_file}" + if $(curl -fI ${server_prefix}${remote_file} &> /dev/null); then + echo ${server_prefix}${remote_file} + return 0 + else + (( n_curl++ )) + fi + } else { + (( n_ping++ )) } - echo "Tried uploading to ${n_hosts} hosts without success" >&2 - ((n_ping)) && echo " - ${n_ping} hosts are unreachable" >&2 - ((n_curl)) && echo " - ${n_curl} errors while uploading" >&2 - return 1 -} else { - echo "${1}: No such file" - return 1 + shift hosts } +echo "Tried uploading to ${n_hosts} hosts without success" >&2 +((n_ping)) && echo " - ${n_ping} hosts are unreachable" >&2 +((n_curl)) && echo " - ${n_curl} errors while uploading" >&2 +return 1 -- cgit v1.2.3