Add zsh completion for '--log-opt syslog-format=rfc5424micro'

Signed-off-by: Steve Durrheimer <s.durrheimer@gmail.com>
master
Steve Durrheimer 2016-04-09 17:36:36 +02:00 committed by Tibor Vass
parent b7f5138adb
commit 6d7b352715
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ __docker_log_options() {
if compset -P '*='; then
case "${${words[-1]%=*}#*=}" in
(syslog-format)
syslog_format_opts=('rfc3164' 'rfc5424')
syslog_format_opts=('rfc3164' 'rfc5424' 'rfc5424micro')
_describe -t syslog-format-opts "Syslog format Options" syslog_format_opts && ret=0
;;
*)