mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-10-10 06:51:21 +02:00
11 lines
188 B
Bash
11 lines
188 B
Bash
#!/bin/sh
|
|
|
|
if ! getent passwd nut; then
|
|
addgroup -S -g 84 nut 2>/dev/null
|
|
adduser -SDH -u 84 -h /run/nut -s /sbin/nologin -g nut nut 2>/dev/null
|
|
fi
|
|
|
|
adduser nut uucp 2>/dev/null
|
|
|
|
exit 0
|