4933a2c558
git-svn-id: svn://svn.openwrt.org/openwrt/packages@29051 3c298f89-4303-0410-b956-a3cf2f4a3e73
15 lines
178 B
Bash
Executable File
15 lines
178 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2009-2011 OpenWrt.org
|
|
|
|
START=60
|
|
|
|
SERVICE_USE_PID=1
|
|
|
|
start() {
|
|
service_start /usr/sbin/mdnsd
|
|
}
|
|
|
|
stop() {
|
|
service_stop /usr/sbin/mdnsd
|
|
}
|