]> git.ipfire.org Git - thirdparty/systemd.git/blob - shell-completion/bash/timedatectl
9830368a5923174ff325e6796f9e9e1ce3905ab7
[thirdparty/systemd.git] / shell-completion / bash / timedatectl
1 # timedatectl(1) completion -*- shell-script -*-
2 # SPDX-License-Identifier: LGPL-2.1+
3 #
4 # This file is part of systemd.
5 #
6 # Copyright © 2010 Ran Benita
7 #
8 # systemd is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU Lesser General Public License as published by
10 # the Free Software Foundation; either version 2.1 of the License, or
11 # (at your option) any later version.
12 #
13 # systemd is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 # General Public License for more details.
17 #
18 # You should have received a copy of the GNU Lesser General Public License
19 # along with systemd; If not, see <http://www.gnu.org/licenses/>.
20
21 __contains_word () {
22 local w word=$1; shift
23 for w in "$@"; do
24 [[ $w = "$word" ]] && return
25 done
26 }
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 _timedatectl() {
34 local i verb comps
35 local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
36 local OPTS='-h --help --version --adjust-system-clock --no-pager
37 --no-ask-password -H --host -M --machine --monitor
38 -p --property -a --all --value'
39
40 if __contains_word "$prev" $OPTS; then
41 case $prev in
42 --host|-H)
43 comps=$(compgen -A hostname)
44 ;;
45 --machine|-M)
46 comps=$( __get_machines )
47 ;;
48 esac
49 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
50 return 0
51 fi
52
53 if [[ $cur = -* ]]; then
54 COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
55 return 0
56 fi
57
58 local -A VERBS=(
59 [BOOLEAN]='set-local-rtc set-ntp'
60 [STANDALONE]='status list-timezones timesync-status show-timesync'
61 [TIMEZONES]='set-timezone'
62 [TIME]='set-time'
63 )
64
65 for ((i=0; i < COMP_CWORD; i++)); do
66 if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]}; then
67 verb=${COMP_WORDS[i]}
68 break
69 fi
70 done
71
72 if [[ -z $verb ]]; then
73 comps=${VERBS[*]}
74 elif __contains_word "$verb" ${VERBS[BOOLEAN]}; then
75 comps='true false'
76 elif __contains_word "$verb" ${VERBS[TIMEZONES]}; then
77 comps=$(command timedatectl list-timezones)
78 elif __contains_word "$verb" ${VERBS[STANDALONE]} ${VERBS[TIME]}; then
79 comps=''
80 fi
81
82 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
83 return 0
84 }
85
86 complete -F _timedatectl timedatectl