]> git.ipfire.org Git - thirdparty/systemd.git/blame - shell-completion/bash/timedatectl
bash-completion: support ntp-servers and revert command for timedatectl
[thirdparty/systemd.git] / shell-completion / bash / timedatectl
CommitLineData
d611dadc 1# timedatectl(1) completion -*- shell-script -*-
7059062c 2# SPDX-License-Identifier: LGPL-2.1+
d611dadc
MB
3#
4# This file is part of systemd.
5#
96b2fb93 6# Copyright © 2010 Ran Benita
d611dadc
MB
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 () {
843cfcb1
ZJS
22 local w word=$1; shift
23 for w in "$@"; do
24 [[ $w = "$word" ]] && return
25 done
d611dadc
MB
26}
27
68c7139a 28__get_machines() {
843cfcb1
ZJS
29 local a b
30 machinectl list --no-legend --no-pager | { while read a b; do echo " $a"; done; };
68c7139a
YW
31}
32
0a0564a1
YW
33__get_interfaces(){
34 local name
35 for name in $(cd /sys/class/net && ls); do
36 [[ "$name" != "lo" ]] && echo "$name"
37 done
38}
d611dadc 39_timedatectl() {
843cfcb1
ZJS
40 local i verb comps
41 local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
42 local OPTS='-h --help --version --adjust-system-clock --no-pager
43 --no-ask-password -H --host -M --machine --monitor
44 -p --property -a --all --value'
d611dadc 45
843cfcb1
ZJS
46 if __contains_word "$prev" $OPTS; then
47 case $prev in
48 --host|-H)
49 comps=$(compgen -A hostname)
50 ;;
51 --machine|-M)
52 comps=$( __get_machines )
53 ;;
54 esac
55 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
56 return 0
57 fi
d611dadc 58
843cfcb1
ZJS
59 if [[ $cur = -* ]]; then
60 COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
61 return 0
62 fi
d611dadc 63
843cfcb1
ZJS
64 local -A VERBS=(
65 [BOOLEAN]='set-local-rtc set-ntp'
66 [STANDALONE]='status show list-timezones timesync-status show-timesync'
67 [TIMEZONES]='set-timezone'
68 [TIME]='set-time'
0a0564a1 69 [IFNAME]='ntp-servers revert'
843cfcb1 70 )
d611dadc 71
843cfcb1
ZJS
72 for ((i=0; i < COMP_CWORD; i++)); do
73 if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]}; then
74 verb=${COMP_WORDS[i]}
75 break
d611dadc 76 fi
843cfcb1 77 done
d611dadc 78
843cfcb1
ZJS
79 if [[ -z $verb ]]; then
80 comps=${VERBS[*]}
81 elif __contains_word "$verb" ${VERBS[BOOLEAN]}; then
82 comps='true false'
83 elif __contains_word "$verb" ${VERBS[TIMEZONES]}; then
84 comps=$(command timedatectl list-timezones)
85 elif __contains_word "$verb" ${VERBS[STANDALONE]} ${VERBS[TIME]}; then
86 comps=''
0a0564a1
YW
87 elif __contains_word "$verb" ${VERBS[TIMEZONES]}; then
88 comps=$( __get_interfaces )
843cfcb1
ZJS
89 fi
90
91 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
92 return 0
d611dadc
MB
93}
94
95complete -F _timedatectl timedatectl