mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-17 18:36:42 +02:00
11 lines
157 B
Bash
11 lines
157 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S hitide 2>/dev/null
|
|
adduser -S -D -H \
|
|
-h /var/empty \
|
|
-s /sbin/nologin \
|
|
-G hitide \
|
|
-g "Lotide UI" \
|
|
hitide 2>/dev/null
|
|
|
|
exit 0
|