mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
19 lines
235 B
Bash
Executable File
19 lines
235 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=80
|
|
|
|
restart()
|
|
{
|
|
/usr/sbin/aliddns
|
|
}
|
|
|
|
start()
|
|
{
|
|
/usr/sbin/aliddns
|
|
}
|
|
|
|
stop()
|
|
{
|
|
/usr/sbin/aliddns
|
|
}
|