diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-06-14 20:27:38 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-06-14 20:27:38 -0300 |
commit | 534a40046e2f8b2bac2d3d8c465ae0a3c572f97d (patch) | |
tree | d52a1625832539dbdba70529b38993f2cfa323e8 | |
parent | ca6f1fef1bacd0c481f182b6dfd7986830279fce (diff) | |
download | kvmx-534a40046e2f8b2bac2d3d8c465ae0a3c572f97d.tar.gz kvmx-534a40046e2f8b2bac2d3d8c465ae0a3c572f97d.tar.bz2 |
Try nohup approach at kvmx-shell
-rwxr-xr-x | kvmx | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -1794,12 +1794,12 @@ function kvmx_shell { else if [ "${STDIN[0]}" == "up" ] || [ "${STDIN[0]}" == "start" ] || [ "${STDIN[0]}" == "restart" ]; then # Process command, nohup version, stdout and stderr are redirected to a file - #nohup $APP_BASE/kvmx ${STDIN[0]} $VM ${STDIN[@]:1} >> $LOGDIR/nohup 2>&1 & - #tail -F $LOGDIR/nohup + nohup $APP_BASE/kvmx ${STDIN[0]} $VM ${STDIN[@]:1} >> $LOGDIR/nohup 2>&1 & + tail -F $LOGDIR/nohup # Process command, disown version, stdout are preserved - $APP_BASE/kvmx ${STDIN[0]} $VM ${STDIN[@]:1} & - disown -h + #$APP_BASE/kvmx ${STDIN[0]} $VM ${STDIN[@]:1} & + #disown -h else $APP_BASE/kvmx ${STDIN[0]} $VM ${STDIN[@]:1} fi @@ -1807,12 +1807,12 @@ function kvmx_shell { else if [ "${STDIN[0]}" == "up" ] || [ "${STDIN[0]}" == "start" ] || [ "${STDIN[0]}" == "restart" ]; then # Process command, nohup version - #nohup $APP_BASE/kvmx ${STDIN[0]} $VM ${STDIN[@]:1} >> $LOGDIR/nohup 2>&1 & - #tail -F $LOGDIR/nohup + nohup $APP_BASE/kvmx ${STDIN[0]} $VM ${STDIN[@]:1} >> $LOGDIR/nohup 2>&1 & + tail -F $LOGDIR/nohup # Process command, disown version - $APP_BASE/kvmx ${STDIN[0]} $VM ${STDIN[@]:1} & - disown -h + #$APP_BASE/kvmx ${STDIN[0]} $VM ${STDIN[@]:1} & + #disown -h else $APP_BASE/kvmx ${STDIN[0]} $VM ${STDIN[@]:1} fi |