diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2021-10-29 21:53:53 -0400 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2021-10-29 21:53:53 -0400 |
| commit | 5b25c5155312f626813e0d36b7933f5eba801dd2 (patch) | |
| tree | 6e264a92dbe13ed77821a5c5bd536b6701768442 /keys/auth.sh | |
| parent | e9b933ea6ce85f5d4f4653b7e5e6a7c836fcc893 (diff) | |
| download | dotfiles-5b25c5155312f626813e0d36b7933f5eba801dd2.tar.gz dotfiles-5b25c5155312f626813e0d36b7933f5eba801dd2.tar.xz | |
Major dotfile cleanup
Diffstat (limited to 'keys/auth.sh')
| -rwxr-xr-x | keys/auth.sh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/keys/auth.sh b/keys/auth.sh deleted file mode 100755 index 15313a0..0000000 --- a/keys/auth.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -_timeout=5 -_url="https://www.rygel.us/etc/keys/personal" -cache="/etc/ssh/keys" - -_temp="$(mktemp)" - -if curl \ - --connect-timeout $_timeout \ - "$_url" > "$_temp" 2>/dev/null -then - cat "$_temp" | tee $cache -else - cat $cache -fi - -rm "$_temp" |
