summaryrefslogtreecommitdiffstats
path: root/initrd/initrd-stuff/etc/functions
diff options
context:
space:
mode:
authorDirk von Suchodoletz2006-08-18 23:52:43 +0200
committerDirk von Suchodoletz2006-08-18 23:52:43 +0200
commitebcfe2456b34ca8c3748e09a6ae5d53fe247c391 (patch)
tree1e9a6c2d22bf49bf4cb01eae71836a35003dc4e2 /initrd/initrd-stuff/etc/functions
parent* largish step towards a working demuxer: demuxing and packing of tars works (diff)
downloadcore-ebcfe2456b34ca8c3748e09a6ae5d53fe247c391.tar.gz
core-ebcfe2456b34ca8c3748e09a6ae5d53fe247c391.tar.xz
core-ebcfe2456b34ca8c3748e09a6ae5d53fe247c391.zip
(hopefully) fixed #71 - please check!
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@317 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'initrd/initrd-stuff/etc/functions')
-rw-r--r--initrd/initrd-stuff/etc/functions4
1 files changed, 2 insertions, 2 deletions
diff --git a/initrd/initrd-stuff/etc/functions b/initrd/initrd-stuff/etc/functions
index cc1694b0..22827b01 100644
--- a/initrd/initrd-stuff/etc/functions
+++ b/initrd/initrd-stuff/etc/functions
@@ -2,7 +2,7 @@
# linux diskless clients (included by init, hwautocfg,
# servconfig, ... within initial ramdisk)
#
-# Author(s): Dirk von Suchodoletz <dirk@goe.net>, 17-08-2006
+# Author(s): Dirk von Suchodoletz <dirk@goe.net>, 18-08-2006
# Felix Endres, 30-04-2006
# Tobias Maier
#
@@ -373,7 +373,7 @@ case "$tftp" in
esac
# unpack part (only gzip is supported)
if [ -s $dst ] ; then
- tar -xpzf $dst
+ tar -xpzf $dst 2>/dev/null
[ "$DEBUGLEVEL" -le 2 ] && rm $dst
return 0
else