8 lines
153 B
Text
8 lines
153 B
Text
|
#!/bin/sh
|
||
|
|
||
|
addgroup -S unbound 2>/dev/null
|
||
|
adduser -S -D -H -h /etc/unbound -s /sbin/nologin -G unbound \
|
||
|
-g "Unbound user" unbound 2>/dev/null
|
||
|
|
||
|
exit 0
|