From 10c55d8e49a4401f443501df2fc460291a73aa82 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Mon, 12 Sep 2011 19:27:12 +0200 Subject: [PATCH] Revert "netmount: start init scripts on RUNLEVEL=boot" This reverts commit 8569249f92ed24ee4164b14d35a6e04641316ccb. --- packages/network/netmount/init.d/59_netmount | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/packages/network/netmount/init.d/59_netmount b/packages/network/netmount/init.d/59_netmount index b054d468d8..a11b1a50bf 100644 --- a/packages/network/netmount/init.d/59_netmount +++ b/packages/network/netmount/init.d/59_netmount @@ -22,16 +22,9 @@ # # runlevels: openelec, textmode -case $RUNLEVEL in - boot) - ( - wait_for_network +( + wait_for_network - progress "mounting Network shares" - netmount > /dev/null 2>&1 - )& - ;; - - poweroff|reboot) - ;; -esac + progress "mounting Network shares" + netmount > /dev/null 2>&1 +)&