From d51f70da6a4a686273cd44892d3673818b608588 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Wed, 7 Sep 2011 23:14:01 +0200 Subject: [PATCH] fuse: start init scripts on RUNLEVEL=boot Signed-off-by: Stephan Raue --- packages/sysutils/fuse/init.d/15_fuse | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/packages/sysutils/fuse/init.d/15_fuse b/packages/sysutils/fuse/init.d/15_fuse index 76996f5d03..45a5afb73c 100644 --- a/packages/sysutils/fuse/init.d/15_fuse +++ b/packages/sysutils/fuse/init.d/15_fuse @@ -23,5 +23,12 @@ # # runlevels: openelec, textmode -progress "Starting Fuse" - mount -t fusectl fusectl /sys/fs/fuse/connections >/dev/null 2>&1 \ No newline at end of file +case $RUNLEVEL in + boot) + progress "Starting Fuse" + mount -t fusectl fusectl /sys/fs/fuse/connections >/dev/null 2>&1 + ;; + + poweroff|reboot) + ;; +esac