mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 15:38:40 +01:00
Add libcap and mdnsresponder
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
"OpenWrt SSH"
|
||||
_ssh._tcp. local
|
||||
22
|
||||
OpenWrt SSH server
|
||||
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2009-2011 OpenWrt.org
|
||||
|
||||
START=61
|
||||
|
||||
SERVICE_USE_PID=1
|
||||
|
||||
start() {
|
||||
service_start /usr/bin/mDNSResponder -b -f /etc/mDNSResponder.conf
|
||||
}
|
||||
|
||||
stop() {
|
||||
service_stop /usr/bin/mDNSResponder
|
||||
}
|
||||
Executable
+14
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2009-2014 OpenWrt.org
|
||||
|
||||
START=60
|
||||
STOP=10
|
||||
USE_PROCD=1
|
||||
|
||||
start_service() {
|
||||
procd_open_instance
|
||||
procd_set_param command /usr/sbin/mdnsd -debug
|
||||
procd_set_param respawn
|
||||
procd_close_instance
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user