blob: a4ab2c77c62f0badfae66386e7771de81dbd5a62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh /etc/rc.common
# Copyright (C) 2008-2011 OpenWrt.org
START=95
start() {
service_start /usr/sbin/bemusedlinuxserver -d
}
stop() {
service_stop /usr/sbin/bemusedlinuxserver
}
|