chiark / gitweb /
completion/systemctl: add missing list-sockets verb
[elogind.git] / shell-completion / bash / systemd-run
1 # systemd-run(1) completion                       -*- shell-script -*-
2 #
3 # This file is part of systemd.
4 #
5 # Copyright 2013 Zbigniew JÄ™drzejewski-Szmek
6 #
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
18 # along with systemd; If not, see <http://www.gnu.org/licenses/>.
19
20 __systemctl() {
21         local mode=$1; shift 1
22         systemctl $mode --full --no-legend "$@"
23 }
24
25 __get_slice_units () { __systemctl $1 list-units --all -t slice \
26         | { while read -r a b c d; do echo " $a"; done; }; }
27
28 _systemd_run() {
29     local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
30     local OPTS='-h --help --version --user --scope --unit --description --slice -r --remain-after-exit --send-sighup'
31
32     local mode=--system
33     local i
34     for (( i=1; i <= COMP_CWORD; i++ )); do
35         if [[ ${COMP_WORDS[i]} != -* ]]; then
36             local root_command=${COMP_WORDS[i]}
37             _command_offset $i
38             return
39         fi
40
41         [[ ${COMP_WORDS[i]} == "--user" ]] && mode=--user
42
43         [[ $i -lt $COMP_CWORD && ${COMP_WORDS[i]} == @(--unit|--description|--slice) ]] && ((i++))
44     done
45
46     case "$prev" in
47         --unit|--description)
48             # argument required but no completions available
49             return
50             ;;
51         --slice)
52             local comps=$(__get_slice_units $mode)
53
54             COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
55             return 0
56             ;;
57     esac
58
59     COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
60     return 0
61 }
62
63 complete -F _systemd_run systemd-run