summaryrefslogtreecommitdiff
path: root/completions/postfix
diff options
context:
space:
mode:
Diffstat (limited to 'completions/postfix')
-rw-r--r--completions/postfix16
1 files changed, 9 insertions, 7 deletions
diff --git a/completions/postfix b/completions/postfix
index eda9ad46..f9605502 100644
--- a/completions/postfix
+++ b/completions/postfix
@@ -11,21 +11,23 @@ _postfix()
return
;;
-D)
- COMPREPLY=( $(compgen -W 'start' -- "$cur") )
+ COMPREPLY=($(compgen -W 'start' -- "$cur"))
return
;;
esac
if [[ $cur == -* ]]; then
- # TODO: doesn't seem to work; the usage message doesn't get output
- # if we try to grep it, it's only output on the console?
- COMPREPLY=( $(compgen -W '$(_parse_usage "$1")' -- "$cur") )
+ COMPREPLY=($(
+ compgen -W \
+ '$(_bashcomp_try_faketty "$1" --help 2>&1 | _parse_usage -)' \
+ -- "$cur"
+ ))
return
fi
- COMPREPLY=( $(compgen -W 'check start stop abort flush reload status
- set-permissions upgrade-configuration' -- "$cur") )
+ COMPREPLY=($(compgen -W 'check start stop abort flush reload status
+ set-permissions upgrade-configuration' -- "$cur"))
} &&
-complete -F _postfix postfix
+ complete -F _postfix postfix
# ex: filetype=sh