Merge branch 'feature/import-templates-11778'

This commit is contained in:
Markus Frosch 2016-10-31 10:55:30 +01:00
commit 15f08170ec
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++;