Don't report fail if mISDN hardware is in use at shutdown.

This commit is contained in:
Arne Fitzenreiter
2010-06-20 13:48:26 +02:00
parent b29c22a433
commit 9c3b24502a

View File

@@ -44,12 +44,8 @@ case "${1}" in
rmmod $module > /dev/null 2>&1;
done
rmmod mISDN_core
if [ ${?} = 0 ]; then
echo_ok;
else
echo_failure;
fi
rmmod mISDN_core > /dev/null 2>&1
echo_ok;
exit 0;
;;