fix VAR=VAL loading from config

This commit is contained in:
Rich Whitcroft 2016-07-23 00:26:18 -04:00
parent dbbe6a831a
commit b1efd4e749
1 changed files with 6 additions and 1 deletions

View File

@ -165,7 +165,12 @@ protected
# Is it a VAR=VAL?
elsif (md = line.match(/^(.+?)=(.*)$/))
if (active_group)
self[active_group][md[1]] = md[2]
var, val = md[1], md[2]
# don't clobber datastore nils with ""
unless val.empty?
self[active_group][var] = val
end
end
end
}