Changeset 1530

Show
Ignore:
Timestamp:
04/16/08 17:17:31 (4 weeks ago)
Author:
kindlund
Message:

Updated utility functions.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • honeyclient/trunk/bin/identify_clients.sh

    r1528 r1530  
    11#!/bin/bash 
    22 
    3 #DATASTORE_PATH="/vm/clones" 
    4 DATASTORE_PATH="/vm/suspicious" 
     3DATASTORE_PATH="/vm/clones" 
     4#DATASTORE_PATH="/vm/suspicious" 
    55LIST=$(find $DATASTORE_PATH -maxdepth 1 -mindepth 1 -type d -exec basename {} \;) 
    66 
     
    88for VM in $LIST ; do 
    99    echo -n $VM 
    10     perl -Ilib bin/identify_clients.pl $VM && echo " - Not In Database" || echo " - Exists In Database" 
     10    perl -Ilib bin/identify_client.pl $VM && echo " - Not In Database" || echo " - Exists In Database" 
    1111done