chiark / gitweb /
bash completion: Add -r/--recursive to systemctl
[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 __get_machines() {
29         local a b
30         machinectl list --no-legend --no-pager | { while read a b; do echo " $a"; done; };
31 }
32
33 _systemd_run() {
34     local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
35     local OPTS='-h --help --version --user --system --scope --unit --description --slice
36                 -r --remain-after-exit --send-sighup -H --host -M --machine --service-type
37                 --uid --gid --nice --setenv -p --property'
38
39     local mode=--system
40     local i
41     for (( i=1; i <= COMP_CWORD; i++ )); do
42         if [[ ${COMP_WORDS[i]} != -* ]]; then
43             local root_command=${COMP_WORDS[i]}
44             _command_offset $i
45             return
46         fi
47
48         [[ ${COMP_WORDS[i]} == "--user" ]] && mode=--user
49
50         [[ $i -lt $COMP_CWORD && ${COMP_WORDS[i]} == @(--unit|--description|--slice|--service-type|-H|--host|-M|--machine|-p|--property) ]] && ((i++))
51     done
52
53     case "$prev" in
54         --unit|--description)
55             # argument required but no completions available
56             return
57             ;;
58         --slice)
59             local comps=$(__get_slice_units $mode)
60
61             COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
62             return 0
63             ;;
64         --service-type)
65             local comps='simple forking oneshot dbus notify idle'
66
67             COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
68             return 0
69             ;;
70         -p|--property)
71             local comps='CPUAccounting= MemoryAccounting= BlockIOAccounting= SendSIGHUP=
72                          SendSIGKILL= MemoryLimit= CPUShares= BlockIOWeight= User= Group=
73                          DevicePolicy= KillMode= DeviceAllow= BlockIOReadBandwidth=
74                          BlockIOWriteBandwidth= BlockIODeviceWeight= Nice= Environment=
75                          KillSignal= LimitCPU= LimitFSIZE= LimitDATA= LimitSTACK=
76                          LimitCORE= LimitRSS= LimitNOFILE= LimitAS= LimitNPROC=
77                          LimitMEMLOCK= LimitLOCKS= LimitSIGPENDING= LimitMSGQUEUE=
78                          LimitNICE= LimitRTPRIO= LimitRTTIME='
79
80             COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
81             return 0
82             ;;
83         -H|--host)
84             local comps=$(compgen -A hostname)
85
86             COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
87             return 0
88             ;;
89         -M|--machine)
90             local comps=$( __get_machines )
91
92             COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
93             return 0
94             ;;
95     esac
96
97     COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
98     return 0
99 }
100
101 complete -F _systemd_run systemd-run