7 lines
153 B
Bash
7 lines
153 B
Bash
#!/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
|