From b3569f084df20b2920f7a51588419a72381f714a Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 15 Jun 2022 16:14:01 +0100 Subject: [PATCH] ch-remote: Add missing boot and delete commands These are simple commands so require no further enabling than adding to the list of commands. Signed-off-by: Rob Bradford --- src/bin/ch-remote.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/ch-remote.rs b/src/bin/ch-remote.rs index 654adb2d4..aa26186b1 100644 --- a/src/bin/ch-remote.rs +++ b/src/bin/ch-remote.rs @@ -598,6 +598,8 @@ fn main() { ), ) .subcommand(Command::new("resume").about("Resume the VM")) + .subcommand(Command::new("boot").about("Boot a created VM")) + .subcommand(Command::new("delete").about("Delete a VM")) .subcommand(Command::new("shutdown").about("Shutdown the VM")) .subcommand( Command::new("snapshot")