summaryrefslogtreecommitdiffstats
path: root/config-db/slxconfig-demuxer
diff options
context:
space:
mode:
authorOliver Tappe2009-01-23 16:18:10 +0100
committerOliver Tappe2009-01-23 16:18:10 +0100
commitc1f6132f6e25d8858ba8c0db4843d9d41d71e5d1 (patch)
tree6e5bc39b2d52cd9e1e63bf752ed273e0cda094f1 /config-db/slxconfig-demuxer
parentvmchooser: (diff)
downloadcore-c1f6132f6e25d8858ba8c0db4843d9d41d71e5d1.tar.gz
core-c1f6132f6e25d8858ba8c0db4843d9d41d71e5d1.tar.xz
core-c1f6132f6e25d8858ba8c0db4843d9d41d71e5d1.zip
* fixed wrong access to 'boot_type' attribute of clients, such that the
config-demuxer now at least tries to build preboot-cd images git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2519 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db/slxconfig-demuxer')
-rwxr-xr-xconfig-db/slxconfig-demuxer2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-db/slxconfig-demuxer b/config-db/slxconfig-demuxer
index d6d58e15..43d2da77 100755
--- a/config-db/slxconfig-demuxer
+++ b/config-db/slxconfig-demuxer
@@ -526,7 +526,7 @@ sub createBootEnvironmentsForSystem
my %bootTypes;
foreach my $client (@$clients) {
- my $type = $client->{boot_type} || 'pxe';
+ my $type = $client->{attrs}->{boot_type} || 'pxe';
$bootTypes{$type}++;
}
foreach my $bootType (sort keys %bootTypes) {