diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-01-10 12:29:02 +0900 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-01-10 12:29:02 +0900 |
commit | e2268fa43742ece4a5cdc2e93f731b2bb2fcc883 (patch) | |
tree | e1f79258c8b0d151f645d0d894f10daed9b715a9 /shell-completion/bash/loginctl | |
parent | a65e34ccb083a03aa8ecbcbf12fc59349802d014 (diff) | |
download | systemd-e2268fa43742ece4a5cdc2e93f731b2bb2fcc883.tar.gz |
bash-completion: do not ellipsize machine name
Diffstat (limited to 'shell-completion/bash/loginctl')
-rw-r--r-- | shell-completion/bash/loginctl | 2 |
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; }; } |