mirror of
https://github.com/openwrt/routing.git
synced 2026-01-10 08:30:08 +04:00
13 lines
246 B
Bash
Executable File
13 lines
246 B
Bash
Executable File
#!/bin/sh
|
|
|
|
daemon=dlep_radio
|
|
|
|
case "$ACTION" in
|
|
ifup)
|
|
. /etc/rc.common /etc/init.d/${daemon} enabled && {
|
|
logger -t '${daemon}[hotplug]' -p daemon.info 'reloading configuration'
|
|
. /etc/rc.common /etc/init.d/${daemon} reload
|
|
}
|
|
;;
|
|
esac
|