blob: 7446580fac3c77ae61c4b1f9cf20f4e3008b585e (
plain)
1 #!/bin/sh
2
3 getent group unbound || /usr/sbin/groupadd -r unbound
4 getent passwd unbound || /usr/sbin/useradd -r -g unbound -d /etc/unbound -s /bin/false unbound
5 /usr/bin/passwd -l unbound
|