From: Silvio Rhatto Date: Mon, 11 Jun 2018 17:13:40 +0000 (-0300) Subject: Shell: try disown instead of nohup X-Git-Tag: 0.1.0~254 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=558828c4eba4688740ecc7476cf6ef73e2c1ae67;p=kvmx.git Shell: try disown instead of nohup --- diff --git a/kvmx b/kvmx index 2faf6c6..35944c7 100755 --- a/kvmx +++ b/kvmx @@ -1736,12 +1736,20 @@ function kvmx_shell { echo "Running in restricted shell mode." echo "Allowed commands are only `echo $restricted_actions | tr ':' ' '`" else - # Process command - nohup $APP_BASE/kvmx ${STDIN[0]} $VM ${STDIN[@]:1} + # Process command, nohup version, stdout and stderr are redirected to a file + #nohup $APP_BASE/kvmx ${STDIN[0]} $VM ${STDIN[@]:1} + + # Process command, disown version, stdout are preserved + $APP_BASE/kvmx ${STDIN[0]} $VM ${STDIN[@]:1} & + disown fi else - # Process command + # Process command, nohup version nohup $APP_BASE/kvmx ${STDIN[0]} $VM ${STDIN[@]:1} + + # Process command, disown version + $APP_BASE/kvmx ${STDIN[0]} $VM ${STDIN[@]:1} & + disown fi fi done