Sync: Allow importing / syncing templates

Purging a used template will obviously fail.

refs #11778
This commit is contained in:
Markus Frosch 2016-10-26 16:40:48 +02:00
parent 48c4ee7c23
commit b04e5f401f
1 changed files with 0 additions and 11 deletions

View File

@ -565,17 +565,6 @@ class Sync
$modified = 0;
$deleted = 0;
foreach ($objects as $object) {
if ($object instanceof IcingaObject && $object->isTemplate()) {
// TODO: allow to sync templates
if ($object->hasBeenModified()) {
throw new IcingaException(
'Sync is not allowed to modify template "%s"',
$object->object_name
);
}
continue;
}
if ($object->shouldBeRemoved()) {
$object->delete($db);
$deleted++;