unbound-redis-apk/unbound/unbound.pre-install
2023-10-20 13:06:49 +02:00

8 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