diff options
-rwxr-xr-x | kvmx | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -516,8 +516,10 @@ function kvmx_usage { # Log into the guest using SSH function kvmx_ssh { if ! kvmx_running; then - echo "$BASENAME: guest $VM is not running" - exit 1 + kvmx up $VM || exit 1 + #kvmx_up || exit 1 + #echo "$BASENAME: guest $VM is not running" + #exit 1 fi if [ "$ssh_support" != "y" ]; then |