blob: 4b4f309edba4d61cd2c34fe5c579fcf55fefaa35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh /etc/rc.common
# Copyright (C) 2006-2011 OpenWrt.org
START=85
start() {
service_start /usr/sbin/oidentd -m -f 113
}
stop() {
service_stop /usr/sbin/oidentd
}
|