mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 00:14:32 +09:00
19 lines
522 B
Plaintext
19 lines
522 B
Plaintext
#autoload
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
(( $+functions[__sd_machines_get_machines] )) ||
|
|
__sd_machines_get_machines () {
|
|
{ machinectl list --full --max-addresses=0 --no-legend --no-pager 2>/dev/null; echo ".host"; } |
|
|
{ while read -r a b; do echo "$a"; done; } |
|
|
sort -u
|
|
}
|
|
|
|
local -a _machines
|
|
_machines=("${(fo)$(__sd_machines_get_machines)}")
|
|
typeset -U _machines
|
|
if [[ -n "$_machines" ]]; then
|
|
_describe 'machines' _machines
|
|
else
|
|
_message 'no machines'
|
|
fi
|