fstools: remove bogus warning in the fstab script
authorJohn Crispin <john@phrozen.org>
Sun, 12 Jun 2016 01:10:28 +0000 (03:10 +0200)
committerJohn Crispin <john@phrozen.org>
Mon, 13 Jun 2016 20:51:43 +0000 (22:51 +0200)
/etc/init.d/fstab had some warnings in it to let users know that they
should call "block mount" directly. these ended up in the bootlog.
fix this by splitting the code into boot() and start(). this way the system
will boot without warning but manually starting the script will lead to the
message.

fixes FS#3

Reported-by: Hannu Nyman <hannu.nyman@iki.fi>
Signed-off-by: John Crispin <john@phrozen.org>
package/system/fstools/files/fstab.init

index f995e965447e5d9a9294362a3b5e91cf4d09262a..5faa8ecbb9bb41dd1eb3579c8abb2af9c5a34960 100644 (file)
@@ -3,12 +3,14 @@
 
 START=40
 
-start() {                            
-       echo "this file has been obsoleted. please call \"/sbin/block mount\" directly"
+boot() {
        /sbin/block mount
 }
 
-stop() {                            
-       echo "this file has been obsoleted. please call \"/sbin/block umount\" directly"
+start() {
+       echo "this file has been obsoleted. please call \"/sbin/block mount\" directly"
+}
+
+stop() {
        /sbin/block umount
 }