mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 05:57:14 +02:00
7 lines
No EOL
155 B
Bash
7 lines
No EOL
155 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S beszel 2>/dev/null
|
|
adduser -S -D -s /bin/sh -G beszel -g beszel beszel 2>/dev/null \
|
|
&& passwd -u beszel 2>/dev/null
|
|
|
|
exit 0 |