initramfs-tools: in resume script just ignore stderr, which is noisy.
This commit is contained in:
parent
d172c2661b
commit
bdd5d4209b
|
@ -57,7 +57,7 @@ esac
|
||||||
|
|
||||||
# hardcode path, uswsusp ships an resume binary too
|
# hardcode path, uswsusp ships an resume binary too
|
||||||
if [ -n "${resume_offset}" ]; then
|
if [ -n "${resume_offset}" ]; then
|
||||||
/bin/resume ${resume} ${resume_offset}
|
/bin/resume ${resume} ${resume_offset} 2>/dev/null
|
||||||
else
|
else
|
||||||
/bin/resume ${resume}
|
/bin/resume ${resume} 2>/dev/null
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'initramfs-tools'
|
# Template file for 'initramfs-tools'
|
||||||
pkgname=initramfs-tools
|
pkgname=initramfs-tools
|
||||||
_localver=100 # This is the XBPS version
|
_localver=101 # This is the XBPS version
|
||||||
_distver=0.99 # This should match debian version
|
_distver=0.99 # This should match debian version
|
||||||
version=${_distver}.${_localver}
|
version=${_distver}.${_localver}
|
||||||
build_style=custom-install
|
build_style=custom-install
|
||||||
|
|
Loading…
Reference in New Issue