Revert "notify pdns after zone update"

This commit is contained in:
Tuxis Internet Engineering V.O.F 2018-03-28 09:05:09 +02:00 committed by GitHub
parent ed27b5e7d1
commit 635441dbe0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 19 deletions

View file

@ -84,14 +84,6 @@ class PdnsAPI {
return $this->loadzone($zone['id']);
}
public function notifyzone($zoneid) {
$api = clone $this->http;
$api->method = 'PUT';
$api->url = "/servers/localhost/zones/$zoneid/notify";
$api->call();
return $api->json;
}
public function deletezone($zoneid) {
$api = clone $this->http;

View file

@ -9,7 +9,6 @@ $allowzoneadd = FALSE; # Allow normal users to add zones
$logging = TRUE;
$allowclearlogs = TRUE; # Allow clearing of log entries
$allowrotatelogs = FALSE;# Allow rotation to text file on server
$notifyafterupdate = TRUE;# send notify to slaves after zone update
# Log directory - if allowrotatelogs is set, this is where the logs will
# be written. It must be writeable by the web server user.