Remove ;;

This commit is contained in:
Roy Marples 2008-02-28 21:14:59 +00:00
parent 988289d98d
commit 15fd2f3acc

View File

@ -13,15 +13,15 @@ depend()
}
_abort() {
rc-abort;
return 1;
rc-abort
return 1
}
# We should only reboot when first booting
_reboot() {
if [ "${RC_SOFTLEVEL}" = "${RC_BOOTLEVEL}" ]; then
reboot "$@";
_abort || return 1;;
reboot "$@"
_abort || return 1
fi
}