diff options
-rw-r--r-- | etc/bash_completion.d/vyatta-op | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/etc/bash_completion.d/vyatta-op b/etc/bash_completion.d/vyatta-op index f26448d..4ac0009 100644 --- a/etc/bash_completion.d/vyatta-op +++ b/etc/bash_completion.d/vyatta-op @@ -22,6 +22,11 @@ # # **** End License **** +# don't do this if we are going into configure mode +if [ "$_OFR_CONFIGURE" == "ok" ]; then + return 0 +fi + # first set vars per args of the "source ...vyatta-op VAR=FOO" _vyatta_extglob=$(shopt -p extglob) shopt -s extglob |