Commit 7a0502ad authored by Mark Canterbury's avatar Mark Canterbury
Browse files

Fixing issue with pidof calls and use of python rather than python3

parent caac68ee
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
python processRequest.py $1
 No newline at end of file
python3 processRequest.py $1
+2 −2
Original line number Diff line number Diff line

    echo "Starting Middlebox"
    ../middlebox 8423 127.0.0.1:8423 webMiddlebox &
    mboxpid=$(pidof ../mcmbox)
    mboxpid=$(pidof middlebox)

    sleep .3

    echo "Starting Server"
    ../server ./pythonHandlerScript.sh &
    serverpid=$(pidof ../mcserver)
    serverpid=$(pidof server)

    sleep .3