Skip to content

Commit 3dcdce4

Browse files
committed
auto fix for ee stack services
1 parent 9bd821f commit 3dcdce4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

config/bash_completion.d/ee_auto.rc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,16 @@ _ee_complete()
6666
elif [ $COMP_CWORD -eq 3 ]; then
6767
case "$prev" in
6868
# HANDLE EVERYTHING AFTER THE THIRD LEVEL NAMESPACE
69-
"install" | "purge" | "remove" | "start" | "stop" | "reload")
69+
"install" | "purge" | "remove" )
7070
COMPREPLY=( $(compgen \
7171
-W "--web --admin --mail --nginx --php --mysql --postfix --wpcli --phpmyadmin --adminer --utils --memcache --dovecot" \
7272
-- $cur) )
7373
;;
74+
"start" | "stop" | "reload" | "restart" | "status")
75+
COMPREPLY=( $(compgen \
76+
-W "--nginx --php --mysql --postfix --memcache --dovecot" \
77+
-- $cur) )
78+
;;
7479

7580
"list")
7681
COMPREPLY=( $(compgen \

0 commit comments

Comments
 (0)