You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously, we relied on a local iniparser hack to realize the include = /path/to/file feature for in-place substitution of this line with an external ini file.
Now when using stock iniparser, another solution is required.
What I want to attempt to do is:
Introduce pre-processing of afp.conf that reads afp.conf, does a global regex search for include =[.*]\n grabs the path to read, does some validation on the data, injects it into afp.conf, then passes the stream to iniparser.
The text was updated successfully, but these errors were encountered:
Previously, we relied on a local iniparser hack to realize the
include = /path/to/file
feature for in-place substitution of this line with an external ini file.Now when using stock iniparser, another solution is required.
What I want to attempt to do is:
Introduce pre-processing of afp.conf that reads afp.conf, does a global regex search for
include =[.*]\n
grabs the path to read, does some validation on the data, injects it into afp.conf, then passes the stream to iniparser.The text was updated successfully, but these errors were encountered: