Total rework of uid processing: rid of cache directory
[monkeysphere.git] / src / monkeysphere
index 23ebd63d0eedb8404a229e95853ac1f71e931b1f..91401b93a0c324c0b34b80768ae788542f377ac6 100755 (executable)
@@ -147,7 +147,7 @@ case $COMMAND in
         # those hosts
        if [ "$1" ] ; then
             for host ; do
-               process_host "$host" "$hostKeysCacheDir"
+               process_host "$host"
            done
 
         # otherwise, if no hosts are specified, process every user
@@ -157,7 +157,7 @@ case $COMMAND in
                failure "known_hosts file '$USER_KNOWN_HOSTS' is empty."
            fi
            log "processing known_hosts file..."
-           process_known_hosts "$USER_KNOWN_HOSTS" "$hostKeysCacheDir"
+           process_known_hosts "$USER_KNOWN_HOSTS"
        fi
        ;;
 
@@ -166,7 +166,7 @@ case $COMMAND in
            failure "you must specify at least one userid."
        fi
        for userID ; do
-           update_userid "$userID" "$userKeysCacheDir"
+           update_userid "$userID"
        done
        log "Run the following to update your monkeysphere authorized_keys file:"
        log "$PGRM update-authorized_keys"