aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-10-04 22:46:17 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-10-04 22:46:17 +0000
commitbb91b8c2fa2fb3fd2ff248e2b3626bc333bd5eff (patch)
tree1164d8a5156ceeed04ba093be6eac75fa819f547
parent0611c7a036cda2d996f9f953584a8e14a92032fd (diff)
downloadmaster-187ad058-bb91b8c2fa2fb3fd2ff248e2b3626bc333bd5eff.tar.gz
master-187ad058-bb91b8c2fa2fb3fd2ff248e2b3626bc333bd5eff.tar.bz2
master-187ad058-bb91b8c2fa2fb3fd2ff248e2b3626bc333bd5eff.zip
hide enable/disable functions, not active yet
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4921 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-xpackage/base-files/default/etc/rc.common4
1 files changed, 0 insertions, 4 deletions
diff --git a/package/base-files/default/etc/rc.common b/package/base-files/default/etc/rc.common
index 667627862f..20d1efa402 100755
--- a/package/base-files/default/etc/rc.common
+++ b/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