1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-02-13 02:51:50 +00:00
openmptcprouter-feeds/z8102/files/etc/init.d/z8102-wdg

20 lines
378 B
Text
Raw Normal View History

#!/bin/sh /etc/rc.common
# Copyright (C) 2013 OpenWrt.org
# Copyright (C) 2023 Yannick Chabanois (Ycarus) for OpenMPTCProuter
2024-10-04 15:48:46 +00:00
START=01
USE_PROCD=1
log() {
logger -t "z8102-wdg" "$@"
}
start_service()
{
# watchdog
procd_open_instance
procd_set_param command /usr/lib/custom/wdg.sh
procd_set_param respawn
procd_close_instance
}