95f68a9247
pdnsd is a proxy dns server with permanent caching PR: 22963 Submitted by: Roman Shterenzon <roman@xpert.com>
10 lines
231 B
Bash
10 lines
231 B
Bash
#!/bin/sh
|
|
PDNSDB=/var/db/pdnsd
|
|
|
|
mkdir -p ${PDNSDB}
|
|
chown nobody ${PDNSDB}
|
|
chmod 755 ${PDNSDB}
|
|
dd if=/dev/zero of=${PDNSDB}/pdnsd.cache bs=1 count=4 >/dev/null 2>&1
|
|
chown nobody ${PDNSDB}/pdnsd.cache
|
|
chmod 640 ${PDNSDB}/pdnsd.cache
|