summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX
diff options
context:
space:
mode:
authorOliver Tappe2007-06-20 21:39:31 +0200
committerOliver Tappe2007-06-20 21:39:31 +0200
commite41af69c5ad53d013a1d45b96e64140b25853aaa (patch)
treec3b6b13d17aa3a7cd6791b116b3aad22f073df40 /installer/OpenSLX
parent* added support for creating the squashfs only if the vendor-OS has been (diff)
downloadcore-e41af69c5ad53d013a1d45b96e64140b25853aaa.tar.gz
core-e41af69c5ad53d013a1d45b96e64140b25853aaa.tar.xz
core-e41af69c5ad53d013a1d45b96e64140b25853aaa.zip
* fixed bug in used-count handling for exports that caused the image to
be deleted no matter how many block devices used it * beautified list of exported vendor-OSes (slxos-export list-ex) git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1183 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX')
-rw-r--r--installer/OpenSLX/OSExport/FileSystem/SquashFS.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/OpenSLX/OSExport/FileSystem/SquashFS.pm b/installer/OpenSLX/OSExport/FileSystem/SquashFS.pm
index 65761aa2..48efb45b 100644
--- a/installer/OpenSLX/OSExport/FileSystem/SquashFS.pm
+++ b/installer/OpenSLX/OSExport/FileSystem/SquashFS.pm
@@ -332,7 +332,7 @@ sub _removeBlockDeviceTagFromExport
# now find out whether or not there are any other tags left:
my $vendorOSName = basename($target);
opendir(DIR, dirname($target));
- my @tags = grep { /^vendorOSName\@/ } readdir(DIR);
+ my @tags = grep { /^$vendorOSName\@/ } readdir(DIR);
return @tags ? 0 : 1;
# return 1 if no more tags (i.e. it is safe to remove the image)
}