5373b76749
git-svn-id: svn://svn.openwrt.org/openwrt/packages@18674 3c298f89-4303-0410-b956-a3cf2f4a3e73
15 lines
230 B
Bash
15 lines
230 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2009 OpenWrt.org
|
|
|
|
START=60
|
|
|
|
start() {
|
|
/usr/sbin/mDNSResponderPosix -b -f /etc/mdns.conf
|
|
/usr/sbin/mdnsd
|
|
}
|
|
|
|
stop() {
|
|
killall mDNSResponderPosix 2> /dev/null
|
|
killall mdnsd 2> /dev/null
|
|
}
|