6a3ba63e60
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28904 3c298f89-4303-0410-b956-a3cf2f4a3e73
16 lines
233 B
Bash
16 lines
233 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
|
|
|
START=50
|
|
|
|
# XXX: pid-file is /var/run/autoipd-<INTERFACE>.pid
|
|
SERVICE_USE_PID=
|
|
|
|
start() {
|
|
service_start /usr/sbin/autoipd
|
|
}
|
|
stop() {
|
|
service_stop /usr/sbin/autoipd
|
|
}
|
|
|