summaryrefslogtreecommitdiff
path: root/completions/postfix
diff options
context:
space:
mode:
Diffstat (limited to 'completions/postfix')
-rw-r--r--completions/postfix8
1 files changed, 4 insertions, 4 deletions
diff --git a/completions/postfix b/completions/postfix
index 9b116be1..89ff4dd4 100644
--- a/completions/postfix
+++ b/completions/postfix
@@ -11,18 +11,18 @@ _postfix()
return
;;
-D)
- COMPREPLY=( $( compgen -W 'start' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'start' -- "$cur") )
return
;;
esac
if [[ $cur == -* ]]; then
- COMPREPLY=( $( compgen -W '$( _parse_usage "$1" )' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '$(_parse_usage "$1")' -- "$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