diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-10-04 22:46:17 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-10-04 22:46:17 +0000 |
commit | 77003aeed97cbaac083ae2e0d4a12594b0b5a968 (patch) | |
tree | de9db9cd532829b3bb879f8e2402cae45b16cfab | |
parent | 2289001c00ce105845da20c54aa2851a3ade3f05 (diff) | |
download | upstream-77003aeed97cbaac083ae2e0d4a12594b0b5a968.tar.gz upstream-77003aeed97cbaac083ae2e0d4a12594b0b5a968.tar.bz2 upstream-77003aeed97cbaac083ae2e0d4a12594b0b5a968.zip |
hide enable/disable functions, not active yet
SVN-Revision: 4921
-rwxr-xr-x | openwrt/package/base-files/default/etc/rc.common | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/openwrt/package/base-files/default/etc/rc.common b/openwrt/package/base-files/default/etc/rc.common index 667627862f..20d1efa402 100755 --- a/openwrt/package/base-files/default/etc/rc.common +++ b/openwrt/package/base-files/default/etc/rc.common @@ -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 |