do not fail if restarting udev fails. It may happen in a chroot without

sysfs mounted
This commit is contained in:
Ludovic Rousseau 2007-05-16 11:29:49 +00:00
parent 73248201f5
commit 518fa917b6
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ case "$1" in
# reload udev rules if the package is installed
if [ -x /etc/init.d/udev ]
then
invoke-rc.d udev reload 3> /dev/null
invoke-rc.d udev reload 3> /dev/null || true
fi
;;