14 lines
208 B
Text
14 lines
208 B
Text
|
#!/bin/sh
|
||
|
|
||
|
cat >&2 <<-EOF
|
||
|
*
|
||
|
* The configuration is in /var/lib/thelounge/config.js.
|
||
|
* To add users, use the cli:
|
||
|
* doas -u thelounge thelounge ..
|
||
|
* e.g.
|
||
|
* doas -u thelounge thelounge add myuser
|
||
|
*
|
||
|
EOF
|
||
|
|
||
|
exit 0
|