2021-06-16 22:35:12 +03:00
#compdef networkctl
2020-11-09 07:23:58 +03:00
# SPDX-License-Identifier: LGPL-2.1-or-later
2016-04-19 00:27:42 +03:00
2018-12-24 14:15:38 +03:00
(( $+functions[_networkctl_commands] )) ||
2019-04-05 12:39:14 +03:00
_networkctl_commands() {
local -a _networkctl_cmds
_networkctl_cmds=(
2016-04-19 00:27:42 +03:00
'list:List existing links'
2020-08-26 17:03:35 +03:00
'status:Show information about the specified links'
'lldp:Show Link Layer Discovery Protocol status'
'label:Show address labels'
'delete:Delete virtual netdevs'
2023-05-21 23:33:22 +03:00
'edit:Edit network configurations'
'cat:Cat network configurations'
2020-08-26 17:03:35 +03:00
'up:Bring devices up'
'down:Bring devices down'
'renew:Renew dynamic configurations'
'forcerenew:Trigger DHCP reconfiguration of all connected clients'
'reconfigure:Reconfigure interfaces'
'reload:Reload .network and .netdev files'
2019-04-05 12:39:14 +03:00
)
if (( CURRENT == 1 )); then
_describe -t commands 'networkctl command' _networkctl_cmds
else
local curcontext="$curcontext"
local -a _links
cmd="${${_networkctl_cmds[(r)$words[1]:*]%%:*}}"
2020-08-26 17:03:35 +03:00
case $cmd in
2023-05-21 23:33:22 +03:00
(list|status|up|down|cat|edit|lldp|delete|renew|forcerenew|reconfigure)
for link in ${(f)"$(_call_program links networkctl list --no-legend)"}; do _links+=($link[(w)2]:$link); done
2020-08-26 17:03:35 +03:00
if [[ -n "$_links" ]]; then
2024-07-22 12:36:47 +03:00
_describe -t links 'links' _links $( [[ $cmd == (edit|cat) ]] && print -- -P@ )
2020-08-26 17:03:35 +03:00
else
_message "no links"
fi
;;
*)
_message "no more options"
;;
esac
2016-04-19 00:27:42 +03:00
fi
2019-04-05 12:39:14 +03:00
}
2016-04-19 00:27:42 +03:00
2021-05-12 18:22:14 +03:00
(( $+functions[_networkctl_get_json] )) || _networkctl_get_json()
{
local -a _json_forms
_json_forms=( $(networkctl --json=help 2>/dev/null) )
_values 'format' $_json_forms
}
2016-04-19 00:27:42 +03:00
_arguments \
2024-04-15 11:58:48 +03:00
'(-a --all)'{-a,--all}'[Show all links with status]' \
2016-04-19 00:27:42 +03:00
'--no-pager[Do not pipe output into a pager]' \
'--no-legend[Do not print the column headers]' \
2024-08-19 05:28:22 +03:00
'--no-ask-password[Do not prompt for password]' \
2024-04-15 11:58:48 +03:00
'(- *)'{-h,--help}'[Show this help]' \
'(- *)--version[Show package version]' \
'--drop-in=[Use the given drop-in file name]:NAME' \
2023-05-21 23:33:22 +03:00
'--no-reload[Do not reload the network manager state when editing]' \
2024-04-15 11:58:48 +03:00
'--json=[Shows output formatted as JSON]:format:_networkctl_get_json' \
2018-12-24 14:15:38 +03:00
'*::networkctl commands:_networkctl_commands'