From 1af1f2f92ef52e3e905b7928d42345d9c48e7e7b Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 8 Oct 2015 15:14:27 +0200 Subject: shell-completion: add pseudo machine ".host" to shell completion --- shell-completion/bash/machinectl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell-completion/bash') diff --git a/shell-completion/bash/machinectl b/shell-completion/bash/machinectl index cbdc3f7304..140465d316 100644 --- a/shell-completion/bash/machinectl +++ b/shell-completion/bash/machinectl @@ -26,7 +26,7 @@ __contains_word() { __get_machines() { local a b - (machinectl list-images --no-legend --no-pager; machinectl list --no-legend --no-pager) | \ + (machinectl list-images --no-legend --no-pager; machinectl list --no-legend --no-pager; echo ".host") | \ { while read a b; do echo " $a"; done; } | sort -u; } -- cgit v1.2.3-54-g00ecf