Subject: | IncludeGlob is not recursive |
So my particular use is with tgtd where it has
/etc/tgt/targets.conf
include /etc/tgt/conf.d/*.conf
One can then drop files into /etc/tgt/conf.d
However if they in turn want to include a glob it doesn't work.
I could get it working by commenting out this line in General.pm
local $this->{IncludeGlob};
Not knowing perl I don't understand the full implications of doing this.
It seems like the code is trying to restrict globbing to
a single level. Why is that?
Also any suggestions for a way to support this setup without
needing to update Config-General would be much appreciated.