mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-02-03 20:40:02 -05:00
Fix removal of zones via kickstart (#2981)
Some checks are pending
L10n Update / update (push) Waiting to run
PHP Tests / Static analysis for php 7.2 on ubuntu-latest (push) Waiting to run
PHP Tests / Static analysis for php 7.3 on ubuntu-latest (push) Waiting to run
PHP Tests / Static analysis for php 7.4 on ubuntu-latest (push) Waiting to run
PHP Tests / Static analysis for php 8.0 on ubuntu-latest (push) Waiting to run
PHP Tests / Static analysis for php 8.1 on ubuntu-latest (push) Waiting to run
PHP Tests / Static analysis for php 8.2 on ubuntu-latest (push) Waiting to run
PHP Tests / Static analysis for php 8.3 on ubuntu-latest (push) Waiting to run
PHP Tests / Unit tests with php 7.2 on ubuntu-latest (push) Waiting to run
PHP Tests / Unit tests with php 7.3 on ubuntu-latest (push) Waiting to run
PHP Tests / Unit tests with php 7.4 on ubuntu-latest (push) Waiting to run
PHP Tests / Unit tests with php 8.0 on ubuntu-latest (push) Waiting to run
PHP Tests / Unit tests with php 8.1 on ubuntu-latest (push) Waiting to run
PHP Tests / Unit tests with php 8.2 on ubuntu-latest (push) Waiting to run
PHP Tests / Unit tests with php 8.3 on ubuntu-latest (push) Waiting to run
Some checks are pending
L10n Update / update (push) Waiting to run
PHP Tests / Static analysis for php 7.2 on ubuntu-latest (push) Waiting to run
PHP Tests / Static analysis for php 7.3 on ubuntu-latest (push) Waiting to run
PHP Tests / Static analysis for php 7.4 on ubuntu-latest (push) Waiting to run
PHP Tests / Static analysis for php 8.0 on ubuntu-latest (push) Waiting to run
PHP Tests / Static analysis for php 8.1 on ubuntu-latest (push) Waiting to run
PHP Tests / Static analysis for php 8.2 on ubuntu-latest (push) Waiting to run
PHP Tests / Static analysis for php 8.3 on ubuntu-latest (push) Waiting to run
PHP Tests / Unit tests with php 7.2 on ubuntu-latest (push) Waiting to run
PHP Tests / Unit tests with php 7.3 on ubuntu-latest (push) Waiting to run
PHP Tests / Unit tests with php 7.4 on ubuntu-latest (push) Waiting to run
PHP Tests / Unit tests with php 8.0 on ubuntu-latest (push) Waiting to run
PHP Tests / Unit tests with php 8.1 on ubuntu-latest (push) Waiting to run
PHP Tests / Unit tests with php 8.2 on ubuntu-latest (push) Waiting to run
PHP Tests / Unit tests with php 8.3 on ubuntu-latest (push) Waiting to run
I think there was a copy-paste mistake during the implementation, else the `removeZones` variable is never used.
This commit is contained in:
parent
5f43bf70aa
commit
81313a6040
1 changed files with 1 additions and 1 deletions
|
|
@ -289,7 +289,7 @@ class KickstartHelper
|
|||
*/
|
||||
protected function removeZones()
|
||||
{
|
||||
return $this->removeObjects($this->removeEndpoints, 'External Zone');
|
||||
return $this->removeObjects($this->removeZones, 'External Zone');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue