summaryrefslogtreecommitdiff
path: root/src/share/m/update_authorized_keys
diff options
context:
space:
mode:
authorJameson Rollins <jrollins@finestructure.net>2010-10-18 23:34:06 -0400
committerJameson Rollins <jrollins@finestructure.net>2010-10-18 23:34:06 -0400
commit2072a06faaf49615a75ef216b296abfbf14e1262 (patch)
treef847b087c8eb5b432c8c5d4a3ef4caa94d4c1615 /src/share/m/update_authorized_keys
parent50f1ff1c641bd02e96a08929ae1c0761e4a5a07d (diff)
fix remove_monkeysphere_lines function to just read from stdin and write to stdout
Diffstat (limited to 'src/share/m/update_authorized_keys')
-rw-r--r--src/share/m/update_authorized_keys2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/m/update_authorized_keys b/src/share/m/update_authorized_keys
index 03f6306..5449951 100644
--- a/src/share/m/update_authorized_keys
+++ b/src/share/m/update_authorized_keys
@@ -32,7 +32,7 @@ update_authorized_keys() {
# remove any monkeysphere lines from authorized_keys file this is
# to insure that that all old authorized keys that are no longer
# authorized are removed
- remove_monkeysphere_lines "$AUTHORIZED_KEYS" > "$tmpFile"
+ remove_monkeysphere_lines <"$AUTHORIZED_KEYS" >"$tmpFile"
process_authorized_user_ids "$tmpFile" \
< "$AUTHORIZED_USER_IDS"