Tweaking onos-* test scripts.
diff --git a/tools/test/bin/onos-install b/tools/test/bin/onos-install
index babfdef..9e17c76 100755
--- a/tools/test/bin/onos-install
+++ b/tools/test/bin/onos-install
@@ -16,9 +16,13 @@
 ssh $remote "
     [ -d $ONOS_INSTALL_DIR/bin ] && echo \"ONOS is already installed\" && exit 1
 
+    # Prepare a landing zone and unroll the bits
     sudo mkdir -p $ONOS_INSTALL_DIR && sudo chown sdn:sdn $ONOS_INSTALL_DIR
     tar zxmf /tmp/$ONOS_BITS.tar.gz -C $ONOS_INSTALL_DIR --strip-components=1
 
+    # Make a link to the log file directory.
     ln -s /opt/onos/$KARAF_DIST/data/log /opt/onos/log
-
+    
+    # TODO: Setup ONOS to run as a daemon; for now we at least startup
+    nohup /opt/onos/bin/onos-ctl server </dev/null 1>/opt/onos/svc.log 2>&1 &
 "