blob: 59421444df5a135b05d4ce2f93eb3efdece411a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh /etc/rc.common
START=99
USE_PROCD=1
PROG=/usr/bin/wgsd-coredns
start_service() {
procd_open_instance
procd_set_param command "$PROG" -conf /etc/Corefile
procd_close_instance
}
|