Browse Source

auto fix for ee stack services

bugfixes
harshadyeola 10 years ago
parent
commit
3dcdce488c
  1. 7
      config/bash_completion.d/ee_auto.rc

7
config/bash_completion.d/ee_auto.rc

@ -66,11 +66,16 @@ _ee_complete()
elif [ $COMP_CWORD -eq 3 ]; then
case "$prev" in
# HANDLE EVERYTHING AFTER THE THIRD LEVEL NAMESPACE
"install" | "purge" | "remove" | "start" | "stop" | "reload")
"install" | "purge" | "remove" )
COMPREPLY=( $(compgen \
-W "--web --admin --mail --nginx --php --mysql --postfix --wpcli --phpmyadmin --adminer --utils --memcache --dovecot" \
-- $cur) )
;;
"start" | "stop" | "reload" | "restart" | "status")
COMPREPLY=( $(compgen \
-W "--nginx --php --mysql --postfix --memcache --dovecot" \
-- $cur) )
;;
"list")
COMPREPLY=( $(compgen \

Loading…
Cancel
Save