blob: 2e3c642ca9975c1ce13c434086a05401c578129a (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/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
|