13 lines
208 B
Bash
13 lines
208 B
Bash
#!/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
|