Maintainer: me Compile tested: armv7l, OpenWRT SDK Run tested: armv7l Linksys WRT1900ACS, OpenWrt SNAPSHOT, r9987-655fff1571 - confirmed PowerDNS server links correctly against libraries. I'm unable to test all the backend modules as I don't have suitable backing stores set up for each. Description: PowerDNS is a versatile nameserver which supports a large number of different backends ranging from simple zonefiles to relational databases and load balancing/failover algorithms. PowerDNS tries to emphasize speed and security. This commit includes the authoritative nameserver, backends and additional tools https://www.powerdns.com/auth.html Signed-off-by: James Taylor <james@jtaylor.id.au>
14 lines
300 B
Bash
14 lines
300 B
Bash
#!/bin/sh /etc/rc.common
|
|
START=99
|
|
|
|
USE_PROCD=1
|
|
|
|
start_service() {
|
|
[ -e /etc/powerdns/pdns.conf ] || return 1
|
|
|
|
procd_open_instance
|
|
procd_set_param command /usr/sbin/pdns_server --daemon=no --guardian=no
|
|
procd_set_param file /etc/powerdns/pdns.conf
|
|
procd_set_param respawn
|
|
procd_close_instance
|
|
}
|