mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 00:02:17 +01:00
9 lines
128 B
Bash
9 lines
128 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S otf 2>/dev/null
|
|
adduser -S -D -h /var/lib/otf -s /sbin/nologin \
|
|
-G otf -g otf otf 2>/dev/null
|
|
|
|
exit 0
|
|
|