diff options
author | Thibaut VARÈNE <hacks@slashdirt.org> | 2022-01-27 12:05:32 +0100 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2022-01-29 21:02:28 -0800 |
commit | 8c78c33fedb09673044e5f604e4714b749dfc004 (patch) | |
tree | 011aecbc1eff7f47705e47c97e5b37c82e060aec /net/coova-chilli/files/chilli.init | |
parent | a3e125267ca4f9f1752ebdd6525c0c3246bfc600 (diff) |
coova-chilli: add interface_trigger "wan"
This intends to replace the hotplug script. It still hardcodes "wan"
interface name (as several other packages do) for lack of a deterministic
way to detect the actual wan iface before it is brought up, but at least
it is fully integrated with procd and will not start a disabled service.
The interface trigger forcefully restarts chilli as a simple reload may
not be sufficient to recover from wan changes.
Signed-off-by: Thibaut VARÈNE <hacks@slashdirt.org>
Diffstat (limited to 'net/coova-chilli/files/chilli.init')
-rw-r--r-- | net/coova-chilli/files/chilli.init | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/coova-chilli/files/chilli.init b/net/coova-chilli/files/chilli.init index d5c0ce4c4..6770e94ac 100644 --- a/net/coova-chilli/files/chilli.init +++ b/net/coova-chilli/files/chilli.init @@ -6,6 +6,7 @@ USE_PROCD=1 service_triggers() { procd_add_reload_trigger "chilli" + procd_add_interface_trigger "interface.*.up" "wan" /etc/init.d/chilli restart } config_cb() { |