Changeset 1309
- Timestamp:
- 03/03/08 17:11:45 (6 months ago)
- Files:
-
- honeyclient/trunk/bin/run.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
honeyclient/trunk/bin/run.sh
r1243 r1309 8 8 rm /tmp/* > /dev/null 2>&1 9 9 10 # Determine the IP address of the VM running. 10 11 IP=$(/cygdrive/c/Program\ Files/VMware/VMware\ Tools/VMip.exe -get) 11 12 echo "IP = $IP" 12 13 14 # Wait until the VM has a valid IP address. 13 15 while [ $IP = "0.0.0.0" ] ; do 14 16 /cygdrive/c/Program\ Files/VMware/VMware\ Tools/VMip.exe -release … … 19 21 done 20 22 23 # Ping a remote site, to test for connectivity. 21 24 /cygdrive/c/windows/system32/ping.exe pingu.honeyclient.org 22 cd ~/honeyclient && svn update23 25 26 # Change to the honeyclient directory. 27 cd ~/honeyclient 28 29 # Perform an SVN update (optional). 30 svn update 31 32 # Start up the realtime integrity checker. 24 33 ~/honeyclient/thirdparty/capture-mod/CaptureBAT.exe -c -l "C:\cygwin\tmp\realtime-changes.txt"& 25 34 35 # Start the Agent code. 26 36 while [ true ] ; do 27 37 perl -Ilib bin/StartAgent.pl && sleep 1
