summaryrefslogtreecommitdiff
path: root/shell-completion/bash/machinectl
diff options
context:
space:
mode:
Diffstat (limited to 'shell-completion/bash/machinectl')
-rw-r--r--shell-completion/bash/machinectl2
1 files changed, 1 insertions, 1 deletions
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;
}