summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSSetup/Packager/rpm.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-06-20 20:04:19 +0200
committerOliver Tappe2007-06-20 20:04:19 +0200
commit898eca2232289d3f64431bc3763da4b65bb3ae61 (patch)
tree2a213ff0429b76037a6cc0f2fbf9f99ec025ed2a /installer/OpenSLX/OSSetup/Packager/rpm.pm
parent* added support for invoking a chrooted shell for any installed vendor-OS, (diff)
downloadcore-898eca2232289d3f64431bc3763da4b65bb3ae61.tar.gz
core-898eca2232289d3f64431bc3763da4b65bb3ae61.tar.xz
core-898eca2232289d3f64431bc3763da4b65bb3ae61.zip
* split export type into filesystem and (optional) blockdevice, closing
ticket#139 * code-reformatting with perltidy git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1176 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSSetup/Packager/rpm.pm')
-rw-r--r--installer/OpenSLX/OSSetup/Packager/rpm.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/OpenSLX/OSSetup/Packager/rpm.pm b/installer/OpenSLX/OSSetup/Packager/rpm.pm
index 12093501..a792cffe 100644
--- a/installer/OpenSLX/OSSetup/Packager/rpm.pm
+++ b/installer/OpenSLX/OSSetup/Packager/rpm.pm
@@ -40,7 +40,7 @@ sub unpackPackages
my $pkgs = shift;
foreach my $pkg (@$pkgs) {
- vlog 2, "unpacking package $pkg...";
+ vlog(2, "unpacking package $pkg...");
if (slxsystem("ash", "-c", "rpm2cpio $pkg | cpio -i -d -u")) {
warn _tr("unable to unpack package <%s> (%s)", $pkg, $!);
# TODO: change this back to die() if cpio-ing fedora6-glibc
@@ -58,7 +58,7 @@ sub importTrustedPackageKeys
return unless defined $keyFiles;
foreach my $keyFile (@$keyFiles) {
- vlog 2, "importing package key $keyFile...";
+ vlog(2, "importing package key $keyFile...");
if (slxsystem("rpm", "--root=$finalPath", "--import", "$keyFile")) {
die _tr("unable to import package key <%s> (%s)\n", $keyFile, $!);
}