summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiroslav Lichvar <mlichvar@redhat.com>2015-10-06 17:44:59 +0200
committerVille Skyttä <ville.skytta@iki.fi>2015-10-07 00:22:54 +0300
commitef26136ea3f4fcf123c1a4af741be625fbac1a05 (patch)
tree8418bb8bca890a3d493f1aeb3db02a61d9705e85
parent7669f0c1bece8f4a344d8e22f7d4969f8f141c10 (diff)
downloadbash-completion-ef26136ea3f4fcf123c1a4af741be625fbac1a05.tar.gz
chronyc: Add missing subcommands
-rw-r--r--completions/chronyc5
1 files changed, 4 insertions, 1 deletions
diff --git a/completions/chronyc b/completions/chronyc
index c3cfdaaf..b95308f5 100644
--- a/completions/chronyc
+++ b/completions/chronyc
@@ -52,11 +52,14 @@ _chronyc()
COMPREPLY=( $( compgen -W 'off stratum' -- "$cur" ) )
;;
manual)
- COMPREPLY=( $( compgen -W 'list on off reset' -- "$cur" ) )
+ COMPREPLY=( $( compgen -W 'list on off reset delete' -- "$cur" ) )
;;
sources|sourcestats)
COMPREPLY=( $( compgen -W '-v' -- "$cur" ) )
;;
+ smoothtime)
+ COMPREPLY=( $( compgen -W 'reset activate' -- "$cur" ) )
+ ;;
esac
;;
2)