diff options
| author | Timo Weingärtner <timo@tiwe.de> | 2012-02-25 21:08:57 +0100 |
|---|---|---|
| committer | Timo Weingärtner <timo@tiwe.de> | 2012-02-25 21:09:41 +0100 |
| commit | 8f32f842b33bdc6617b41dc9f18b222fd3013e21 (patch) | |
| tree | 204edc905feee66d6a8d27426b15ecb5fd50b250 /plugins/curl | |
| download | openssh-known-hosts-8ca603d373973396a423fe73ea5dee211465843e.tar.gz | |
Imported Debian version 0.1debian/0.1
Diffstat (limited to 'plugins/curl')
| -rwxr-xr-x | plugins/curl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/curl b/plugins/curl new file mode 100755 index 0000000..8e658cc --- /dev/null +++ b/plugins/curl @@ -0,0 +1,13 @@ +#!/bin/dash + +# curl plugin +# +# ENVIRONMENT VARIABLES: +# URL URL to download known_hosts file from +# + +set -e + +curl -Rz "./current" -m 300 -o new "${URL}" + +# vim:set ft=sh: |
