aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-12-20 05:26:39 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-12-20 05:26:39 +0000
commit8b3f951d4068978770159c11a40acb320914b015 (patch)
treef5d3eb6a0684403c5c558b09b92dc78e25cc5fa0 /package/base-files
parent2b439bc32865317738e58ae95c5efd821e846482 (diff)
downloadmaster-187ad058-8b3f951d4068978770159c11a40acb320914b015.tar.gz
master-187ad058-8b3f951d4068978770159c11a40acb320914b015.tar.bz2
master-187ad058-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-xpackage/base-files/files/etc/rc.common1
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
}