hide enable/disable functions, not active yet
authorFelix Fietkau <nbd@openwrt.org>
Wed, 4 Oct 2006 22:46:17 +0000 (22:46 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Wed, 4 Oct 2006 22:46:17 +0000 (22:46 +0000)
SVN-Revision: 4921

openwrt/package/base-files/default/etc/rc.common

index 667627862f08870b9f792ee2522d1663ca2ffe46..20d1efa402bcd382c6a72b0b9608cf474a94f942 100755 (executable)
@@ -48,8 +48,6 @@ Available commands:
        stop    Stop the service
        restart Restart the service
        reload  Reload configuration files (or restart if that fails)
-       enable  Enable the service (load at boot time)
-       disable Disable the service
 $EXTRA_HELP
 EOF
 }
@@ -68,8 +66,6 @@ eval "case \"\$action\" in
        stop) stop;;
        reload) reload || restart;;
        restart) restart;;
-       enable) enable;;
-       disable) disable;;
        boot) boot;;
        shutdown) shutdown;;
        $cmds