From 06010bea598efbbdb5309cfe5104bd3f0b18f00c Mon Sep 17 00:00:00 2001 From: "Lance R. Vick" Date: Wed, 30 Apr 2025 18:00:40 -0700 Subject: [PATCH] fix: add shell command to supported command list --- src/host/rootfs/usr/local/bin/netvm | 1 + 1 file changed, 1 insertion(+) diff --git a/src/host/rootfs/usr/local/bin/netvm b/src/host/rootfs/usr/local/bin/netvm index 4fdc215..147147f 100755 --- a/src/host/rootfs/usr/local/bin/netvm +++ b/src/host/rootfs/usr/local/bin/netvm @@ -265,6 +265,7 @@ case "$1" in status) shift; cmd_status $@ ;; start) shift; cmd_start $@ ;; stop) shift; cmd_stop $@ ;; + shell) shift; cmd_shell $@ ;; push) shift; cmd_push $@ ;; pull) shift; cmd_pull $@ ;; run) shift; cmd_run $@ ;;