diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-12-13 08:01:21 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-12-13 08:01:21 +0000 |
commit | 5a351509aa3f12e18cea2ab312ff7466631c8488 (patch) | |
tree | 24f61be3ce5bc77af89c545a2d14b13cb80d9611 /package/base-files/files/etc/rc.common | |
parent | 2317e72d9983be83cc0bfa6a5cd6e74a4a4c9b2b (diff) | |
download | upstream-5a351509aa3f12e18cea2ab312ff7466631c8488.tar.gz upstream-5a351509aa3f12e18cea2ab312ff7466631c8488.tar.bz2 upstream-5a351509aa3f12e18cea2ab312ff7466631c8488.zip |
base-files: use shutdown instead of stop when the system goes down (patch by tripolar)
SVN-Revision: 24540
Diffstat (limited to 'package/base-files/files/etc/rc.common')
-rwxr-xr-x | package/base-files/files/etc/rc.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/etc/rc.common b/package/base-files/files/etc/rc.common index 072f143549..6ec88aef9c 100755 --- a/package/base-files/files/etc/rc.common +++ b/package/base-files/files/etc/rc.common @@ -30,7 +30,7 @@ boot() { } shutdown() { - return 0 + stop } disable() { |