diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-12-20 05:26:39 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-12-20 05:26:39 +0000 |
commit | 8b3f951d4068978770159c11a40acb320914b015 (patch) | |
tree | f5d3eb6a0684403c5c558b09b92dc78e25cc5fa0 /package/base-files | |
parent | 2b439bc32865317738e58ae95c5efd821e846482 (diff) | |
download | upstream-8b3f951d4068978770159c11a40acb320914b015.tar.gz upstream-8b3f951d4068978770159c11a40acb320914b015.tar.bz2 upstream-8b3f951d4068978770159c11a40acb320914b015.zip |
add a workaround for self-killing init scripts on restart (#1023)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5876 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-rwxr-xr-x | package/base-files/files/etc/rc.common | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/base-files/files/etc/rc.common b/package/base-files/files/etc/rc.common index 1e6c5e912b..5d9ee8666f 100755 --- a/package/base-files/files/etc/rc.common +++ b/package/base-files/files/etc/rc.common @@ -18,6 +18,7 @@ reload() { } restart() { + trap '' TERM stop start } |