initramfs-tools: in resume script just ignore stderr, which is noisy.
This commit is contained in:
parent
d172c2661b
commit
bdd5d4209b
2 changed files with 3 additions and 3 deletions
|
@ -57,7 +57,7 @@ esac
|
|||
|
||||
# hardcode path, uswsusp ships an resume binary too
|
||||
if [ -n "${resume_offset}" ]; then
|
||||
/bin/resume ${resume} ${resume_offset}
|
||||
/bin/resume ${resume} ${resume_offset} 2>/dev/null
|
||||
else
|
||||
/bin/resume ${resume}
|
||||
/bin/resume ${resume} 2>/dev/null
|
||||
fi
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for '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
|
||||
version=${_distver}.${_localver}
|
||||
build_style=custom-install
|
||||
|
|
Loading…
Reference in a new issue