]>
Commit | Line | Data |
---|---|---|
f8457290 | 1 | # shellcheck shell=bash |
37e21077 | 2 | # portablectl(1) completion -*- shell-script -*- |
db9ecf05 | 3 | # SPDX-License-Identifier: LGPL-2.1-or-later |
37e21077 YW |
4 | # |
5 | # This file is part of systemd. | |
6 | # | |
37e21077 YW |
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. | |
11 | # | |
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. | |
16 | # | |
17 | # You should have received a copy of the GNU Lesser General Public License | |
85fce6f4 | 18 | # along with systemd; If not, see <https://www.gnu.org/licenses/>. |
37e21077 YW |
19 | |
20 | __contains_word () { | |
843cfcb1 ZJS |
21 | local w word=$1; shift |
22 | for w in "$@"; do | |
23 | [[ $w = "$word" ]] && return | |
24 | done | |
37e21077 YW |
25 | } |
26 | ||
27 | __get_machines() { | |
843cfcb1 | 28 | local a b |
4e918305 ZJS |
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; } | \ | |
31 | sort -u | |
37e21077 YW |
32 | } |
33 | ||
34 | _portablectl() { | |
843cfcb1 ZJS |
35 | local i n comps verb |
36 | local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]} | |
37 | local -A OPTS=( | |
38 | [STANDALONE]='-q --quiet --runtime --no-reload --cat --no-pager --no-legend | |
966d7977 | 39 | --no-ask-password --enable --now -h --help --version |
d3322c1f | 40 | --clean --no-block --force' |
fa84c1ce | 41 | [ARG]='-p --profile --copy -H --host -M --machine --extension' |
843cfcb1 | 42 | ) |
37e21077 | 43 | |
843cfcb1 ZJS |
44 | local -A VERBS=( |
45 | [STANDALONE]='list' | |
e26fe5f9 | 46 | [IMAGE]='attach detach reattach inspect is-attached set-limit' |
843cfcb1 ZJS |
47 | [IMAGES]='remove' |
48 | [IMAGE_WITH_BOOL]='read-only' | |
49 | ) | |
37e21077 | 50 | |
843cfcb1 ZJS |
51 | if __contains_word "$prev" ${OPTS[ARG]}; then |
52 | case $prev in | |
53 | --profile|-p) | |
54 | comps="default nonetwork strict trusted" | |
55 | ;; | |
56 | --copy) | |
ab16e485 | 57 | comps="copy symlink auto mixed" |
843cfcb1 ZJS |
58 | ;; |
59 | --host|-H) | |
60 | comps=$(compgen -A hostname) | |
61 | ;; | |
62 | --machine|-M) | |
63 | comps=$( __get_machines ) | |
64 | ;; | |
fa84c1ce LB |
65 | --extension) |
66 | comps=$( compgen -A file -- "$cur" ) | |
67 | compopt -o filenames | |
68 | ;; | |
843cfcb1 ZJS |
69 | esac |
70 | COMPREPLY=( $(compgen -W '$comps' -- "$cur") ) | |
71 | return 0 | |
72 | fi | |
37e21077 | 73 | |
843cfcb1 ZJS |
74 | if [[ "$cur" = -* ]]; then |
75 | COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") ) | |
76 | return 0 | |
77 | fi | |
37e21077 | 78 | |
843cfcb1 ZJS |
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 | |
82 | verb=${COMP_WORDS[i]} | |
83 | break | |
84 | fi | |
85 | done | |
37e21077 | 86 | |
e873a9f1 | 87 | n=$((COMP_CWORD - i)) |
37e21077 | 88 | |
36ec0268 | 89 | if [[ -z ${verb-} ]]; then |
843cfcb1 ZJS |
90 | comps=${VERBS[*]} |
91 | elif __contains_word "$verb" ${VERBS[STANDALONE]}; then | |
92 | comps='' | |
93 | elif __contains_word "$verb" ${VERBS[IMAGE]}; then | |
94 | if [[ $n == 1 ]]; then | |
95 | comps=$( compgen -A file -- "$cur" ) | |
96 | compopt -o filenames | |
97 | else | |
98 | comps='' | |
37e21077 | 99 | fi |
843cfcb1 ZJS |
100 | elif __contains_word "$verb" ${VERBS[IMAGES]}; then |
101 | comps=$( compgen -A file -- "$cur" ) | |
102 | compopt -o filenames | |
103 | elif __contains_word "$verb" ${VERBS[IMAGE_WITH_BOOL]}; then | |
104 | if [[ $n == 1 ]]; then | |
105 | comps=$( compgen -A file -- "$cur" ) | |
106 | compopt -o filenames | |
107 | elif [[ $n == 2 ]]; then | |
108 | comps='yes no' | |
109 | else | |
110 | comps='' | |
111 | fi | |
112 | fi | |
37e21077 | 113 | |
843cfcb1 ZJS |
114 | COMPREPLY=( $(compgen -o filenames -W '$comps' -- "$cur") ) |
115 | return 0 | |
37e21077 YW |
116 | } |
117 | ||
118 | complete -F _portablectl portablectl |