2024-02-27 14:54:49 +01:00
# shellcheck shell=bash
2018-05-28 15:38:19 +09:00
# portablectl(1) completion -*- shell-script -*-
2020-11-09 13:23:58 +09:00
# SPDX-License-Identifier: LGPL-2.1-or-later
2018-05-28 15:38:19 +09:00
#
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# systemd is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
2022-06-28 16:07:35 +02:00
# along with systemd; If not, see <https://www.gnu.org/licenses/>.
2018-05-28 15:38:19 +09:00
__contains_word () {
2019-04-05 11:39:14 +02:00
local w word=$1; shift
for w in "$@"; do
[[ $w = "$word" ]] && return
done
2018-05-28 15:38:19 +09:00
}
__get_machines() {
2019-04-05 11:39:14 +02:00
local a b
2022-10-20 07:48:02 +02:00
{ machinectl list --full --max-addresses=0 --no-legend --no-pager 2>/dev/null; echo ".host"; } | \
{ while read a b; do echo " $a"; done; } | \
sort -u
2018-05-28 15:38:19 +09:00
}
_portablectl() {
2019-04-05 11:39:14 +02:00
local i n comps verb
local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
local -A OPTS=(
[STANDALONE]='-q --quiet --runtime --no-reload --cat --no-pager --no-legend
2024-04-08 01:34:12 +01:00
--no-ask-password --enable --now -h --help --version
2024-04-08 01:57:26 +01:00
--clean --no-block --force'
2023-04-25 16:45:06 +01:00
[ARG]='-p --profile --copy -H --host -M --machine --extension'
2019-04-05 11:39:14 +02:00
)
2018-05-28 15:38:19 +09:00
2019-04-05 11:39:14 +02:00
local -A VERBS=(
[STANDALONE]='list'
2021-02-01 14:29:40 +00:00
[IMAGE]='attach detach reattach inspect is-attached set-limit'
2019-04-05 11:39:14 +02:00
[IMAGES]='remove'
[IMAGE_WITH_BOOL]='read-only'
)
2018-05-28 15:38:19 +09:00
2019-04-05 11:39:14 +02:00
if __contains_word "$prev" ${OPTS[ARG]}; then
case $prev in
--profile|-p)
comps="default nonetwork strict trusted"
;;
--copy)
2024-03-15 15:07:31 +00:00
comps="copy symlink auto mixed"
2019-04-05 11:39:14 +02:00
;;
--host|-H)
comps=$(compgen -A hostname)
;;
--machine|-M)
comps=$( __get_machines )
;;
2023-04-25 16:45:06 +01:00
--extension)
comps=$( compgen -A file -- "$cur" )
compopt -o filenames
;;
2019-04-05 11:39:14 +02:00
esac
COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
return 0
fi
2018-05-28 15:38:19 +09:00
2019-04-05 11:39:14 +02:00
if [[ "$cur" = -* ]]; then
COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
return 0
fi
2018-05-28 15:38:19 +09:00
2019-04-05 11:39:14 +02:00
for ((i=0; i < COMP_CWORD; i++)); do
if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]} &&
! __contains_word "${COMP_WORDS[i-1]}" ${OPTS[ARG]}; then
verb=${COMP_WORDS[i]}
break
fi
done
2018-05-28 15:38:19 +09:00
2023-03-31 08:00:00 +00:00
n=$((COMP_CWORD - i))
2018-05-28 15:38:19 +09:00
2021-06-22 14:56:19 +01:00
if [[ -z ${verb-} ]]; then
2019-04-05 11:39:14 +02:00
comps=${VERBS[*]}
elif __contains_word "$verb" ${VERBS[STANDALONE]}; then
comps=''
elif __contains_word "$verb" ${VERBS[IMAGE]}; then
if [[ $n == 1 ]]; then
comps=$( compgen -A file -- "$cur" )
compopt -o filenames
else
comps=''
2018-05-28 15:38:19 +09:00
fi
2019-04-05 11:39:14 +02:00
elif __contains_word "$verb" ${VERBS[IMAGES]}; then
comps=$( compgen -A file -- "$cur" )
compopt -o filenames
elif __contains_word "$verb" ${VERBS[IMAGE_WITH_BOOL]}; then
if [[ $n == 1 ]]; then
comps=$( compgen -A file -- "$cur" )
compopt -o filenames
elif [[ $n == 2 ]]; then
comps='yes no'
else
comps=''
fi
fi
2018-05-28 15:38:19 +09:00
2019-04-05 11:39:14 +02:00
COMPREPLY=( $(compgen -o filenames -W '$comps' -- "$cur") )
return 0
2018-05-28 15:38:19 +09:00
}
complete -F _portablectl portablectl