1 # timedatectl(1) completion -*- shell-script -*-
3 # This file is part of systemd.
5 # Copyright 2010 Ran Benita
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.
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.
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/>.
21 local w word=$1; shift
23 [[ $w = "$word" ]] && return
29 local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
30 local OPTS='-h --help --version --adjust-system-clock --no-pager
31 --no-ask-password -H --host --machine'
33 if __contains_word "$prev" $OPTS; then
39 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
43 if [[ $cur = -* ]]; then
44 COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
49 [BOOLEAN]='set-local-rtc set-ntp'
50 [STANDALONE]='status set-time list-timezones'
51 [TIMEZONES]='set-timezone'
55 for ((i=0; i < COMP_CWORD; i++)); do
56 if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]}; then
62 if [[ -z $verb ]]; then
64 elif __contains_word "$verb" ${VERBS[BOOLEAN]}; then
66 elif __contains_word "$verb" ${VERBS[TIMEZONES]}; then
67 comps=$(command timedatectl list-timezones)
68 elif __contains_word "$verb" ${VERBS[STANDALONE]} ${VERBS[TIME]}; then
72 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
76 complete -F _timedatectl timedatectl