7 lines
135 B
Text
7 lines
135 B
Text
|
#!/bin/sh
|
||
|
|
||
|
addgroup -S thelounge 2>/dev/null
|
||
|
adduser -S -D -H -s /sbin/nologin -G thelounge -g thelounge thelounge 2>/dev/null
|
||
|
|
||
|
exit 0
|