Skip to content

Commit e2aeab1

Browse files
Zuulopenstack-gerrit
authored andcommitted
Merge "Fix neutron empty string check"
2 parents 1abf359 + c336b87 commit e2aeab1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/neutron_plugins/ovn_agent

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ function configure_ovn {
558558
sample_file=$NEUTRON_DIR/etc/neutron_ovn_metadata_agent.ini.sample
559559
config_file=$OVN_META_CONF
560560
fi
561-
if [ -n ${config_file} ]; then
561+
if [ -n "$config_file" ]; then
562562
sudo install -d -o $STACK_USER $NEUTRON_CONF_DIR
563563

564564
mkdir -p $NEUTRON_DIR/etc/neutron/plugins/ml2

0 commit comments

Comments
 (0)