From: Christian Brauner Date: Thu, 2 Apr 2026 14:21:14 +0000 (+0200) Subject: shell-completion: add bash/zsh completions for machinectl pause/resume X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e2af53db04abaea0cd105b1a0d04e51f2b0f1793;p=thirdparty%2Fsystemd.git shell-completion: add bash/zsh completions for machinectl pause/resume Signed-off-by: Christian Brauner (Amutable) --- diff --git a/shell-completion/bash/machinectl b/shell-completion/bash/machinectl index 78319d91a41..50b46fb2792 100644 --- a/shell-completion/bash/machinectl +++ b/shell-completion/bash/machinectl @@ -45,7 +45,7 @@ _machinectl() { local -A VERBS=( [STANDALONE]='list list-images clean pull-tar pull-raw list-transfers cancel-transfer import-fs' - [MACHINES]='status show start stop login shell enable disable poweroff reboot terminate kill + [MACHINES]='status show start stop login shell enable disable poweroff reboot pause resume terminate kill image-status show-image remove export-tar export-raw' [MACHINES_OR_FILES]='edit cat' [MACHINE_ONLY]='clone rename set-limit' diff --git a/shell-completion/zsh/_machinectl b/shell-completion/zsh/_machinectl index d5f7aa9680d..31ddf4fca57 100644 --- a/shell-completion/zsh/_machinectl +++ b/shell-completion/zsh/_machinectl @@ -38,6 +38,8 @@ "disable:Disable automatic container start at boot" "poweroff:Power off one or more VMs/containers" "reboot:Reboot one or more VMs/containers" + "pause:Pause one or more machines" + "resume:Resume one or more previously paused machines" "terminate:Terminate one or more VMs/containers" "kill:Send signal to process or a VM/container" "copy-to:Copy files from the host to a container" @@ -77,7 +79,7 @@ start|enable|disable) _machinectl_images ;; - status|show|poweroff|reboot|terminate|kill) + status|show|poweroff|reboot|pause|resume|terminate|kill) _sd_machines ;; login|shell)