summaryrefslogtreecommitdiff
path: root/others/vm3/vm.sh
diff options
context:
space:
mode:
authorYour Name <you@example.com>2024-12-29 20:10:29 +0800
committerYour Name <you@example.com>2024-12-29 20:10:29 +0800
commit6f49e7a01ed42cb1227e5070f5d1095342e9bc29 (patch)
treed7f46b53cdd0b0ea70855c364ee5f4f58521923b /others/vm3/vm.sh
parent26d1a94dfd4eeb91b259bfd9d4b8f8d1cdfabd98 (diff)
debian12-support
Diffstat (limited to 'others/vm3/vm.sh')
-rwxr-xr-xothers/vm3/vm.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/others/vm3/vm.sh b/others/vm3/vm.sh
index 30168ba..c36b0ae 100755
--- a/others/vm3/vm.sh
+++ b/others/vm3/vm.sh
@@ -35,8 +35,8 @@ case $category in
start)
$SCRIPT_DIR/compute/start.sh "$@"
;;
- list)
- $SCRIPT_DIR/compute/list.sh "$@"
+ ls)
+ $SCRIPT_DIR/compute/ls.sh "$@"
;;
shutdown)
$SCRIPT_DIR/compute/shutdown.sh "$@"
@@ -45,7 +45,7 @@ case $category in
$SCRIPT_DIR/compute/delete.sh "$@"
;;
*)
- echo -e "Available compute actions: \ncreate\nstart\nlist\nshutdown\ndelete"
+ echo -e "Available compute actions: \ncreate\nstart\nls\nshutdown\ndelete"
exit 1
;;
esac