summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorJameson Graef Rollins <jrollins@phys.columbia.edu>2008-07-27 11:57:59 -0700
committerJameson Graef Rollins <jrollins@phys.columbia.edu>2008-07-27 11:57:59 -0700
commit5eab2f06d17f8a178c6fe61a7bf9fcba349e7680 (patch)
treeb708f6d83b64aca87961ebea56447e3a74bbbad5 /src/common
parent8c8d5414f07e1c411f824d60fbfaaf545e91749a (diff)
Tweak how empty authorized_user_ids and known_hosts files are handled.
Diffstat (limited to 'src/common')
-rw-r--r--src/common10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/common b/src/common
index b57b721..1e8f23c 100644
--- a/src/common
+++ b/src/common
@@ -563,6 +563,11 @@ process_known_hosts() {
hosts=$(meat "$KNOWN_HOSTS" | cut -d ' ' -f 1 | grep -v '^|.*$' | tr , ' ' | tr '\n' ' ')
+ if [ -z "$hosts" ] ; then
+ log "no hosts to process."
+ return
+ fi
+
# take all the hosts from the known_hosts file (first
# field), grep out all the hashed hosts (lines starting
# with '|')...
@@ -697,6 +702,11 @@ process_authorized_user_ids() {
log "processing authorized_user_ids file..."
+ if ! meat "$authorizedUserIDs" ; then
+ log "no user IDs to process."
+ return
+ fi
+
nline=0
# extract user IDs from authorized_user_ids file