aports/main/bind/bind.pre-install
Natanael Copa 1328c94d12 main/bind: dont create homedir for bind user
We dont want copy the content of /etc/skel to /etc/bind
ref #6725
2017-01-24 16:51:35 +00:00

7 lines
132 B
Bash

#!/bin/sh
addgroup -S named 2>/dev/null
adduser -S -D -H -h /etc/bind -s /sbin/nologin -G named -g named named 2>/dev/null
exit 0