summaryrefslogtreecommitdiffstats
path: root/config-db/OpenSLX/ConfigDB.pm
diff options
context:
space:
mode:
authorOliver Tappe2008-01-11 15:16:50 +0100
committerOliver Tappe2008-01-11 15:16:50 +0100
commit79787734395e3180f83f6f0edfa1718dd4f250cf (patch)
treeba1eb16e30b0e335582e3683103051d17a9d1f3b /config-db/OpenSLX/ConfigDB.pm
parent* fixed encoding problem of PXE-config file output (diff)
downloadcore-79787734395e3180f83f6f0edfa1718dd4f250cf.tar.gz
core-79787734395e3180f83f6f0edfa1718dd4f250cf.tar.xz
core-79787734395e3180f83f6f0edfa1718dd4f250cf.zip
* fixed bug where changing an attribute of a client or system would drop
all other (pre-existing) attributes * now detailed info about the active plugins are shown when listing a system * the default attributes of the plugins are now synchronized against the default system whenever a plugin is installed into a vendor-OS (otherwise, the respective plugin would not be activated automatically) git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1464 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db/OpenSLX/ConfigDB.pm')
-rw-r--r--config-db/OpenSLX/ConfigDB.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/config-db/OpenSLX/ConfigDB.pm b/config-db/OpenSLX/ConfigDB.pm
index 2acffa91..e8d0f560 100644
--- a/config-db/OpenSLX/ConfigDB.pm
+++ b/config-db/OpenSLX/ConfigDB.pm
@@ -1091,6 +1091,9 @@ sub addInstalledPlugin
my $vendorOSID = shift;
my $pluginName = shift;
+ # make sure the attributes of this plugin are available via default system
+ $self->{'db-schema'}->synchronizeAttributesWithDefaultSystem($self);
+
return $self->{'meta-db'}->addInstalledPlugin($vendorOSID, $pluginName);
}