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
|
|
}
|