]> git.ipfire.org Git - thirdparty/systemd.git/blob - shell-completion/bash/loginctl
Merge pull request #1989 from keszybz/filetriggers-v2
[thirdparty/systemd.git] / shell-completion / bash / loginctl
1 # loginctl(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 __contains_word () {
21 local w word=$1; shift
22 for w in "$@"; do
23 [[ $w = "$word" ]] && return
24 done
25 }
26
27 __get_all_sessions () { loginctl --no-legend list-sessions | { while read -r a b; do printf "%s\n" "$a"; done; } ; }
28 __get_all_users () { loginctl --no-legend list-users | { while read -r a b; do printf "%s\n" "$b"; done; } ; }
29 __get_all_seats () { loginctl --no-legend list-seats | { while read -r a b; do printf "%s\n" "$a"; done; } ; }
30
31 _loginctl () {
32 local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
33 local i verb comps
34
35 local -A OPTS=(
36 [STANDALONE]='--all -a --help -h --no-pager --privileged -P --version
37 --no-legend --no-ask-password -l --full'
38 [ARG]='--host -H --kill-who --property -p --signal -s --machine'
39 )
40
41 if __contains_word "$prev" ${OPTS[ARG]}; then
42 case $prev in
43 --signal|-s)
44 _signals
45 return
46 ;;
47 --kill-who)
48 comps='all leader'
49 ;;
50 --host|-H)
51 comps=$(compgen -A hostname)
52 ;;
53 --property|-p)
54 comps=''
55 ;;
56 esac
57 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
58 return 0
59 fi
60
61
62 if [[ "$cur" = -* ]]; then
63 COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
64 return 0
65 fi
66
67 local -A VERBS=(
68 [SESSIONS]='session-status show-session activate lock-session unlock-session terminate-session kill-session'
69 [USERS]='user-status show-user enable-linger disable-linger terminate-user kill-user'
70 [SEATS]='seat-status show-seat terminate-seat'
71 [STANDALONE]='list-sessions list-users list-seats flush-devices'
72 [ATTACH]='attach'
73 )
74
75 for ((i=0; i < COMP_CWORD; i++)); do
76 if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]} &&
77 ! __contains_word "${COMP_WORDS[i-1]}" ${OPTS[ARG]}; then
78 verb=${COMP_WORDS[i]}
79 break
80 fi
81 done
82
83 if [[ -z $verb ]]; then
84 comps="${VERBS[*]}"
85
86 elif __contains_word "$verb" ${VERBS[SESSIONS]}; then
87 comps=$( __get_all_sessions )
88
89 elif __contains_word "$verb" ${VERBS[USERS]}; then
90 comps=$( __get_all_users )
91
92 elif __contains_word "$verb" ${VERBS[SEATS]}; then
93 comps=$( __get_all_seats )
94
95 elif __contains_word "$verb" ${VERBS[STANDALONE]}; then
96 comps=''
97
98 elif __contains_word "$verb" ${VERBS[ATTACH]}; then
99 if [[ $prev = $verb ]]; then
100 comps=$( __get_all_seats )
101 else
102 comps=$(compgen -A file -- "$cur" )
103 compopt -o filenames
104 fi
105 fi
106
107 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
108 return 0
109 }
110
111 complete -F _loginctl loginctl