mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
7 lines
132 B
Bash
7 lines
132 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S named 2>/dev/null
|
|
adduser -S -D -H -h /etc/bind -s /sbin/nologin -G named -g named named 2>/dev/null
|
|
|
|
exit 0
|