diff options
author | John Southworth <john.southworth@vyatta.com> | 2011-07-26 20:22:28 -0700 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2011-07-26 20:22:28 -0700 |
commit | 0650675a62ed21691600f1677d2a707957020396 (patch) | |
tree | 75f187fe6a8dba0c02099ec409aacaa426d31fd9 | |
parent | f6e108c18bb30a6c5a1a32fbe5e66099907c36d3 (diff) | |
download | vyatta-op-0650675a62ed21691600f1677d2a707957020396.tar.gz vyatta-op-0650675a62ed21691600f1677d2a707957020396.zip |
Bugfix 5611: Fix a typo in the shell level check
-rw-r--r-- | etc/bash_completion.d/vyatta-op | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/bash_completion.d/vyatta-op b/etc/bash_completion.d/vyatta-op index 0420c23..5ac807e 100644 --- a/etc/bash_completion.d/vyatta-op +++ b/etc/bash_completion.d/vyatta-op @@ -566,7 +566,7 @@ fi _vyatta_op_init $@ -if [[ "VYATTA_USER_LEVEL_DIR"=="/opt/vyatta/etc/shell/level/users" ]]; then +if [[ "$VYATTA_USER_LEVEL_DIR" == "/opt/vyatta/etc/shell/level/users" ]]; then PS1='\u@\h> ' fi |