2010-11-08 18:16:33 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2019-08-27 13:39:13 +02:00
|
|
|
getent group unbound || /usr/sbin/groupadd -r unbound
|
|
|
|
getent passwd unbound || /usr/sbin/useradd -r -g unbound -d /etc/unbound -s /bin/false unbound
|
2010-11-08 18:16:33 +01:00
|
|
|
/usr/bin/passwd -l unbound
|
|
|
|
|