Skip to content
Snippets Groups Projects
Commit 90dc6a82 authored by Adrian Rossouw's avatar Adrian Rossouw
Browse files

Move recreation of config files to the http parent class, because the web...

Move recreation of config files to the http parent class, because the web cluster class wasnt calling it.
parent abbf36fd
Branches
Tags
No related merge requests found
......@@ -20,6 +20,14 @@ class provisionService_http extends provisionService {
return FALSE;
}
function verify() {
parent::verify();
$this->create_config($this->context->type);
$this->parse_configs();
}
}
// Public http service , as in non-encrypted and listening on a port.
......@@ -114,9 +122,7 @@ class provisionService_http_public extends provisionService_http {
}
}
$this->create_config($this->context->type);
$this->parse_configs();
parent::verify();
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment