1 # shellcheck shell=bash
2 # portablectl(1) completion -*- shell-script -*-
3 # SPDX-License-Identifier: LGPL-2.1-or-later
5 # This file is part of systemd.
7 # systemd is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU Lesser General Public License as published by
9 # the Free Software Foundation; either version 2.1 of the License, or
10 # (at your option) any later version.
12 # systemd is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # General Public License for more details.
17 # You should have received a copy of the GNU Lesser General Public License
18 # along with systemd; If not, see <https://www.gnu.org/licenses/>.
21 local w word=$1; shift
23 [[ $w = "$word" ]] && return
29 { machinectl list --full --max-addresses=0 --no-legend --no-pager 2>/dev/null; echo ".host"; } | \
30 { while read a b; do echo " $a"; done; } | \
36 local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
38 [STANDALONE]='-q --quiet --runtime --no-reload --cat --no-pager --no-legend
39 --no-ask-password --enable --now -h --help --version
40 --clean --no-block --force'
41 [ARG]='-p --profile --copy -H --host -M --machine --extension'
46 [IMAGE]='attach detach reattach inspect is-attached set-limit'
48 [IMAGE_WITH_BOOL]='read-only'
51 if __contains_word "$prev" ${OPTS[ARG]}; then
54 comps="default nonetwork strict trusted"
57 comps="copy symlink auto mixed"
60 comps=$(compgen -A hostname)
63 comps=$( __get_machines )
66 comps=$( compgen -A file -- "$cur" )
70 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
74 if [[ "$cur" = -* ]]; then
75 COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
79 for ((i=0; i < COMP_CWORD; i++)); do
80 if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]} &&
81 ! __contains_word "${COMP_WORDS[i-1]}" ${OPTS[ARG]}; then
89 if [[ -z ${verb-} ]]; then
91 elif __contains_word "$verb" ${VERBS[STANDALONE]}; then
93 elif __contains_word "$verb" ${VERBS[IMAGE]}; then
94 if [[ $n == 1 ]]; then
95 comps=$( compgen -A file -- "$cur" )
100 elif __contains_word "$verb" ${VERBS[IMAGES]}; then
101 comps=$( compgen -A file -- "$cur" )
103 elif __contains_word "$verb" ${VERBS[IMAGE_WITH_BOOL]}; then
104 if [[ $n == 1 ]]; then
105 comps=$( compgen -A file -- "$cur" )
107 elif [[ $n == 2 ]]; then
114 COMPREPLY=( $(compgen -o filenames -W '$comps' -- "$cur") )
118 complete -F _portablectl portablectl