mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
24 lines
657 B
Markdown
24 lines
657 B
Markdown
# Quassel
|
|
|
|
We offer a Quassel instance for Arch team members who can not easily run their own bouncer.
|
|
|
|
## Libera Chat restrictions
|
|
|
|
Libera Chat restricts or limits multiple connections from the same IP Address. Every quassel user uses
|
|
a separate connection. We are currently not near the limit. If we need more we have to email
|
|
support@libera.chat.
|
|
|
|
## Add a user
|
|
|
|
`sudo -u quassel quasselcore --configdir=/var/lib/quassel --add-user`
|
|
|
|
## Migration quassel
|
|
|
|
Stop the quassel service, then:
|
|
|
|
`sudo -u postgres pg_dump -F c quassel >quassel.dump`
|
|
|
|
Restore the data:
|
|
|
|
`sudo -u postgres pg_restore -d quassel --clean --if-exists --exit-on-error <quassel.dump`
|