aports/testing/pdns-recursor/pdns-recursor.pre-install
Olivier Mauras c60d2a3ed5 testing/pdns-recursor: New aport
- Will use "recursor" account instead of "pdns" to have both recursor and auth servers installed  without them messing with each others users
- Included config only modify uid/gid and port on 5353 so that it could work by default with pdns
2016-08-22 15:34:53 +02:00

7 lines
142 B
Bash

#!/bin/sh
addgroup -S recursor 2>/dev/null
adduser -S -D -H -h /var/empty -s /bin/false -G recursor -g recursor recursor 2>/dev/null
exit 0