mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
5 lines
249 B
Text
5 lines
249 B
Text
post_install() {
|
|
getent group unbound &>/dev/null || groupadd -r unbound >/dev/null
|
|
getent passwd unbound &>/dev/null || useradd -r -g unbound -d /etc/unbound -s /bin/false -c unbound unbound >/dev/null
|
|
cp -f /etc/trusted-key.key /etc/unbound/
|
|
}
|