summaryrefslogtreecommitdiff
path: root/shell-completion/bash/loginctl
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2020-01-10 12:29:02 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2020-01-10 12:29:02 +0900
commite2268fa43742ece4a5cdc2e93f731b2bb2fcc883 (patch)
treee1f79258c8b0d151f645d0d894f10daed9b715a9 /shell-completion/bash/loginctl
parenta65e34ccb083a03aa8ecbcbf12fc59349802d014 (diff)
downloadsystemd-e2268fa43742ece4a5cdc2e93f731b2bb2fcc883.tar.gz
bash-completion: do not ellipsize machine name
Diffstat (limited to 'shell-completion/bash/loginctl')
-rw-r--r--shell-completion/bash/loginctl2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell-completion/bash/loginctl b/shell-completion/bash/loginctl
index c3e1ca754b..35a71de32e 100644
--- a/shell-completion/bash/loginctl
+++ b/shell-completion/bash/loginctl
@@ -31,7 +31,7 @@ __get_all_seats () { loginctl --no-legend list-seats | { while read -r a b
__get_machines() {
local a b
- machinectl list --no-legend --no-pager 2>/dev/null |
+ machinectl list --full --no-legend --no-pager 2>/dev/null |
{ while read a b; do echo " $a"; done; };
}