diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2010-06-29 13:07:54 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-06-29 13:07:54 +0200 |
commit | e2736187f067122736b1728eb1e51ca713d76281 (patch) | |
tree | 912992102d217e5e3ca4e6604db046cac685b3c1 /etc/functions/put | |
parent | fc68858d1c28d30a02ef73b6d26434c71d75b6ae (diff) |
put: Cleanup; use http
Diffstat (limited to 'etc/functions/put')
-rw-r--r-- | etc/functions/put | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/etc/functions/put b/etc/functions/put index 4fe8279..66fd956 100644 --- a/etc/functions/put +++ b/etc/functions/put @@ -16,16 +16,11 @@ 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_int { - put_aneurysm - hostname='aneurysm' -} - function put_aneurysm () { hostname='derf.homelinux.org' ssh_options=(-q) target_dir='public_html/tmp/' - server_prefix='https://derf.homelinux.org/tmp/' + server_prefix='http://derf.homelinux.org/tmp/' } function put_becquerel () { @@ -35,7 +30,7 @@ function put_becquerel () { server_prefix='http://static.illdefined.org/~derf/tmp/' } -hosts=(aneurysm_int aneurysm becquerel) +hosts=(aneurysm becquerel) hosts_nossl=(becquerel) while [[ ${1} == -* ]] { |