diff options
author | Thibaut VARÈNE <hacks@slashdirt.org> | 2022-01-27 11:14:58 +0100 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2022-01-29 21:02:28 -0800 |
commit | a3e125267ca4f9f1752ebdd6525c0c3246bfc600 (patch) | |
tree | efc24c73497d33b59fa0600df763a62faf3bf4e7 /net/coova-chilli/files | |
parent | b1fb66e0073b7f20e97425520909de5357deda9e (diff) |
coova-chilli: remove hotplug call
This hotplug trigger unconditionaly restarts coova-chilli when the "wan"
interface sees action "ifup", without checking whether or not the
service is disabled or the upstream interface is actually called "wan".
This hotplug could be replaced by a suitable service trigger instead.
Signed-off-by: Thibaut VARÈNE <hacks@slashdirt.org>
Diffstat (limited to 'net/coova-chilli/files')
-rw-r--r-- | net/coova-chilli/files/chilli.hotplug | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/net/coova-chilli/files/chilli.hotplug b/net/coova-chilli/files/chilli.hotplug deleted file mode 100644 index e12812b49..000000000 --- a/net/coova-chilli/files/chilli.hotplug +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -[ "$ACTION" == "ifup" ] || exit 0 - -[ "$INTERFACE" = "wan" ] && { - /etc/init.d/chilli restart -} |