mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-17 07:29:43 +02:00
12 lines
155 B
Bash
12 lines
155 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=65
|
|
|
|
start() {
|
|
service_start /usr/bin/unrealircd 1>>/dev/null 2>>/dev/null
|
|
}
|
|
|
|
stop() {
|
|
service_stop /usr/bin/unrealircd
|
|
}
|