mirror of https://github.com/Icinga/icinga2.git
Make sure we're always creating the conf.d and zones.d directories
fixes #9879
This commit is contained in:
parent
ec8cdcd554
commit
2e43c57d6b
|
@ -82,6 +82,8 @@ String ConfigModuleUtility::CreateStage(const String& moduleName, const Dictiona
|
|||
path += "/" + stageName;
|
||||
|
||||
Utility::MkDirP(path, 0700);
|
||||
Utility::MkDirP(path + "/conf.d", 0700);
|
||||
Utility::MkDirP(path + "/zones.d", 0700);
|
||||
WriteStageConfig(moduleName, stageName);
|
||||
|
||||
bool foundDotDot = false;
|
||||
|
|
Loading…
Reference in New Issue