diff options
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/bash_completion.d/vyatta-cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/bash_completion.d/vyatta-cfg b/etc/bash_completion.d/vyatta-cfg index 776c56b..8626342 100755 --- a/etc/bash_completion.d/vyatta-cfg +++ b/etc/bash_completion.d/vyatta-cfg @@ -97,9 +97,9 @@ show () args+=("$arg") fi done + # Note: the sed command below is to fix bug 7331 cli-shell-api "${opts[@]}" -- showCfg "${args[@]}" \ - | sed -e '/--- CONFIGURATION COMMENTED OUT DURING MIGRATION BELOW ---/\ - ,/--- CONFIGURATION COMMENTED OUT DURING MIGRATION ABOVE ---/d'\ + | sed -e '/--- CONFIGURATION COMMENTED OUT DURING MIGRATION BELOW ---/,/--- CONFIGURATION COMMENTED OUT DURING MIGRATION ABOVE ---/d'\ | eval "${VYATTA_PAGER:-cat}" } |