#!/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