- Updated Package:
sdxpinn-quecmanager to 0.0.3
- Fixed issue described here: c8faf539c1
- Updated package sdxpinn-console-menu to 0.0.2
- Added new menu: LAN Settings
- Will let you edit the LAN settings. Only for DMZ mode or normal LAN mode not mpdn_rule. Work in Progress.
- Updated package tailscaled tailscale to 1.76.1
See tailscale's website for chnagelog
Co-Authored-By: Russel Yasol <73575327+dr-dolomite@users.noreply.github.com>
21 lines
503 B
Bash
21 lines
503 B
Bash
#!/bin/ash /etc/rc.common
|
|
|
|
START=04
|
|
USE_PROCD=1
|
|
|
|
start_service() {
|
|
procd_open_instance
|
|
procd_set_param command /usr/sbin/init-overlay-watchdog.sh
|
|
procd_set_param respawn 3600 5 5
|
|
procd_set_param stdout 1
|
|
procd_set_param stderr 1
|
|
procd_set_param pidfile /var/run/init-overlay-watchdog.pid
|
|
procd_set_param tracking
|
|
procd_close_instance
|
|
}
|
|
|
|
stop_service() {
|
|
echo "Stopping init-overlay-watchdog service"
|
|
# `procd` will handle stopping the service and its processes
|
|
}
|