]> git.proxmox.com Git - systemd.git/blob - shell-completion/bash/systemctl.in
Merge branch 'master' into experimental
[systemd.git] / shell-completion / bash / systemctl.in
1 # systemctl(1) completion -*- shell-script -*-
2 #
3 # This file is part of systemd.
4 #
5 # Copyright 2010 Ran Benita
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 __systemd_properties() {
26 local mode=$1
27 { __systemctl $mode show --all;
28 @rootlibexecdir@/systemd --dump-configuration-items; } |
29 while IFS='=' read -r key value; do
30 [[ $value ]] && echo "$key"
31 done
32 }
33
34 __contains_word () {
35 local w word=$1; shift
36 for w in "$@"; do
37 [[ $w = "$word" ]] && return
38 done
39 }
40
41 __filter_units_by_property () {
42 local mode=$1 property=$2 value=$3 ; shift 3
43 local units=("$@")
44 local props
45 IFS=$'\n' read -rd '' -a props < \
46 <(__systemctl $mode show --property "$property" -- "${units[@]}")
47 for ((i=0; $i < ${#units[*]}; i++)); do
48 if [[ "${props[i]}" = "$property=$value" ]]; then
49 echo " ${units[i]}"
50 fi
51 done
52 }
53
54 __get_all_units () { { __systemctl $1 list-unit-files; __systemctl $1 list-units --all; } \
55 | { while read -r a b; do [[ $a =~ @\. ]] || echo " $a"; done; }; }
56 __get_template_names () { __systemctl $1 list-unit-files \
57 | { while read -r a b; do [[ $a =~ @\. ]] && echo " ${a%%@.*}@"; done; }; }
58
59 __get_active_units () { __systemctl $1 list-units \
60 | { while read -r a b; do echo " $a"; done; }; }
61 __get_startable_units () {
62 # find startable inactive units
63 __filter_units_by_property $mode ActiveState inactive $(
64 __filter_units_by_property $mode CanStart yes $(
65 __systemctl $mode list-unit-files --state enabled,disabled,static | \
66 { while read -r a b; do [[ $a =~ @\. ]] || echo " $a"; done; }
67 __systemctl $mode list-units --state inactive,failed | \
68 { while read -r a b; do echo " $a"; done; } ))
69 }
70 __get_restartable_units () {
71 # filter out masked and not-found
72 __filter_units_by_property $mode CanStart yes $(
73 __systemctl $mode list-unit-files --state enabled,disabled,static | \
74 { while read -r a b; do [[ $a =~ @\. ]] || echo " $a"; done; }
75 __systemctl $mode list-units | \
76 { while read -r a b; do echo " $a"; done; } )
77 }
78 __get_failed_units () { __systemctl $1 list-units \
79 | { while read -r a b c d; do [[ $c == "failed" ]] && echo " $a"; done; }; }
80 __get_enabled_units () { __systemctl $1 list-unit-files \
81 | { while read -r a b c ; do [[ $b == "enabled" ]] && echo " $a"; done; }; }
82 __get_disabled_units () { __systemctl $1 list-unit-files \
83 | { while read -r a b c ; do [[ $b == "disabled" ]] && echo " $a"; done; }; }
84 __get_masked_units () { __systemctl $1 list-unit-files \
85 | { while read -r a b c ; do [[ $b == "masked" ]] && echo " $a"; done; }; }
86 __get_all_unit_files () { { __systemctl $1 list-unit-files; } | { while read -r a b; do echo " $a"; done; }; }
87
88 _systemctl () {
89 local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
90 local i verb comps mode
91
92 local -A OPTS=(
93 [STANDALONE]='--all -a --reverse --after --before --defaults --failed --force -f --full -l --global
94 --help -h --no-ask-password --no-block --no-legend --no-pager --no-reload --no-wall
95 --quiet -q --privileged -P --system --user --version --runtime --recursive -r --firmware-setup'
96 [ARG]='--host -H --kill-who --property -p --signal -s --type -t --state --job-mode --root'
97 )
98
99 if __contains_word "--user" ${COMP_WORDS[*]}; then
100 mode=--user
101 else
102 mode=--system
103 fi
104
105 if __contains_word "$prev" ${OPTS[ARG]}; then
106 case $prev in
107 --signal|-s)
108 comps=$(compgen -A signal)
109 ;;
110 --type|-t)
111 comps='automount busname device mount path service snapshot socket swap target timer'
112 ;;
113 --state)
114 comps='loaded not-found stub
115 active inactive
116 dead elapsed exited listening mounted plugged running waiting'
117 ;;
118 --job-mode)
119 comps='fail replace replace-irreversibly isolate
120 ignore-dependencies ignore-requirements flush'
121 ;;
122 --kill-who)
123 comps='all control main'
124 ;;
125 --root)
126 comps=$(compgen -A directory -- "$cur" )
127 compopt -o filenames
128 ;;
129 --host|-H)
130 comps=$(compgen -A hostname)
131 ;;
132 --property|-p)
133 comps=$(__systemd_properties $mode)
134 ;;
135 esac
136 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
137 return 0
138 fi
139
140 if [[ "$cur" = -* ]]; then
141 COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
142 return 0
143 fi
144
145 local -A VERBS=(
146 [ALL_UNITS]='is-active is-failed is-enabled status show cat mask preset help list-dependencies edit'
147 [ENABLED_UNITS]='disable'
148 [DISABLED_UNITS]='enable'
149 [REENABLABLE_UNITS]='reenable'
150 [FAILED_UNITS]='reset-failed'
151 [STARTABLE_UNITS]='start'
152 [STOPPABLE_UNITS]='stop condstop kill try-restart condrestart'
153 [ISOLATABLE_UNITS]='isolate'
154 [RELOADABLE_UNITS]='reload condreload reload-or-try-restart force-reload'
155 [RESTARTABLE_UNITS]='restart reload-or-restart'
156 [TARGET_AND_UNITS]='add-wants add-requires'
157 [MASKED_UNITS]='unmask'
158 [JOBS]='cancel'
159 [SNAPSHOTS]='delete'
160 [ENVS]='set-environment unset-environment'
161 [STANDALONE]='daemon-reexec daemon-reload default
162 emergency exit halt hibernate hybrid-sleep kexec list-jobs
163 list-sockets list-timers list-units list-unit-files poweroff
164 reboot rescue show-environment suspend get-default
165 is-system-running'
166 [NAME]='snapshot'
167 [FILE]='link switch-root'
168 [TARGETS]='set-default'
169 )
170
171 for ((i=0; i < COMP_CWORD; i++)); do
172 if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]} &&
173 ! __contains_word "${COMP_WORDS[i-1]}" ${OPTS[ARG]}; then
174 verb=${COMP_WORDS[i]}
175 break
176 fi
177 done
178
179 if [[ -z $verb ]]; then
180 comps="${VERBS[*]}"
181
182 elif __contains_word "$verb" ${VERBS[ALL_UNITS]}; then
183 comps=$( __get_all_units $mode )
184 compopt -o filenames
185
186 elif __contains_word "$verb" ${VERBS[ENABLED_UNITS]}; then
187 comps=$( __get_enabled_units $mode )
188 compopt -o filenames
189
190 elif __contains_word "$verb" ${VERBS[DISABLED_UNITS]}; then
191 comps=$( __get_disabled_units $mode;
192 __get_template_names $mode)
193 compopt -o filenames
194
195 elif __contains_word "$verb" ${VERBS[REENABLABLE_UNITS]}; then
196 comps=$( __get_disabled_units $mode;
197 __get_enabled_units $mode;
198 __get_template_names $mode)
199 compopt -o filenames
200
201 elif __contains_word "$verb" ${VERBS[STARTABLE_UNITS]}; then
202 comps=$( __get_startable_units $mode;
203 __get_template_names $mode)
204 compopt -o filenames
205
206 elif __contains_word "$verb" ${VERBS[RESTARTABLE_UNITS]}; then
207 comps=$( __get_restartable_units $mode;
208 __get_template_names $mode)
209 compopt -o filenames
210
211 elif __contains_word "$verb" ${VERBS[STOPPABLE_UNITS]}; then
212 comps=$( __filter_units_by_property $mode CanStop yes \
213 $( __get_active_units $mode ) )
214 compopt -o filenames
215
216 elif __contains_word "$verb" ${VERBS[RELOADABLE_UNITS]}; then
217 comps=$( __filter_units_by_property $mode CanReload yes \
218 $( __get_active_units $mode ) )
219 compopt -o filenames
220
221 elif __contains_word "$verb" ${VERBS[ISOLATABLE_UNITS]}; then
222 comps=$( __filter_units_by_property $mode AllowIsolate yes \
223 $( __get_all_units $mode ) )
224 compopt -o filenames
225
226 elif __contains_word "$verb" ${VERBS[FAILED_UNITS]}; then
227 comps=$( __get_failed_units $mode )
228 compopt -o filenames
229
230 elif __contains_word "$verb" ${VERBS[MASKED_UNITS]}; then
231 comps=$( __get_masked_units $mode )
232 compopt -o filenames
233
234 elif __contains_word "$verb" ${VERBS[TARGET_AND_UNITS]}; then
235 if __contains_word "$prev" ${VERBS[TARGET_AND_UNITS]} \
236 || __contains_word "$prev" ${OPTS[STANDALONE]}; then
237 comps=$( __systemctl $mode list-unit-files --type target --all \
238 | { while read -r a b; do echo " $a"; done; } )
239 else
240 comps=$( __get_all_unit_files $mode )
241 fi
242 compopt -o filenames
243
244 elif __contains_word "$verb" ${VERBS[STANDALONE]} ${VERBS[NAME]}; then
245 comps=''
246
247 elif __contains_word "$verb" ${VERBS[JOBS]}; then
248 comps=$( __systemctl $mode list-jobs | { while read -r a b; do echo " $a"; done; } )
249
250 elif __contains_word "$verb" ${VERBS[SNAPSHOTS]}; then
251 comps=$( __systemctl $mode list-units --type snapshot --full --all \
252 | { while read -r a b; do echo " $a"; done; } )
253
254 elif __contains_word "$verb" ${VERBS[ENVS]}; then
255 comps=$( __systemctl $mode show-environment \
256 | while read -r line; do echo " ${line%%=*}=";done )
257 compopt -o nospace
258
259 elif __contains_word "$verb" ${VERBS[FILE]}; then
260 comps=$( compgen -A file -- "$cur" )
261 compopt -o filenames
262 elif __contains_word "$verb" ${VERBS[TARGETS]}; then
263 comps=$( __systemctl $mode list-unit-files --type target --full --all \
264 | { while read -r a b; do echo " $a"; done; } )
265 fi
266
267 COMPREPLY=( $(compgen -o filenames -W '$comps' -- "$cur") )
268 return 0
269 }
270
271 complete -F _systemctl systemctl