2025-02-23 13:33:30 +09:00
<!--
2025-11-04 22:39:03 +09:00
SPDX-FileCopyrightText: 2019 - 2025 Slavi Pantaleev
SPDX-FileCopyrightText: 2019 Eduardo Beltrame
2025-03-05 12:43:41 +09:00
SPDX-FileCopyrightText: 2020 Hugues Morisset
2025-11-04 22:39:03 +09:00
SPDX-FileCopyrightText: 2020 Tulir Asokan
SPDX-FileCopyrightText: 2021 - 2022 MDAD project contributors
SPDX-FileCopyrightText: 2022 Dennis Ciba
2025-02-23 13:33:30 +09:00
SPDX-FileCopyrightText: 2022 MDAD project contributors
2025-11-04 22:39:03 +09:00
SPDX-FileCopyrightText: 2022 Vladimir Panteleev
2025-03-15 16:43:24 +09:00
SPDX-FileCopyrightText: 2024 - 2025 Suguru Hirahara
2025-02-23 13:33:30 +09:00
SPDX-License-Identifier: AGPL-3.0-or-later
-->
2025-11-04 22:39:03 +09:00
# Setting up MX Puppet Discord bridging (optional, removed)
2020-06-11 17:54:36 +02:00
2025-11-04 22:39:03 +09:00
🪦 The playbook used to be able to install and configure [mx-puppet-discord ](https://gitlab.com/mx-puppet/discord/mx-puppet-discord ), but no longer includes this component, as it has been unmaintained for a long time.
2020-07-01 19:01:14 +03:00
2025-11-04 22:39:03 +09:00
You may wish to use the [Mautrix Discord bridge ](https://github.com/mautrix/discord ) instead.
2020-06-11 17:54:36 +02:00
2025-11-04 22:39:03 +09:00
## Uninstalling the bridge manually
2020-06-11 17:54:36 +02:00
2025-11-04 22:39:03 +09:00
If you still have the MX Puppet Discord bridge installed on your Matrix server, the playbook can no longer help you uninstall it and you will need to do it manually. To uninstall manually, run these commands on the server:
2020-06-11 17:54:36 +02:00
2024-12-01 16:42:30 +09:00
```sh
2025-11-04 22:39:03 +09:00
systemctl disable --now matrix-mx-puppet-discord.service
2024-12-01 16:42:30 +09:00
2025-11-04 22:39:03 +09:00
rm -rf /matrix/mx-puppet-discord
2020-06-11 17:54:36 +02:00
2025-11-04 22:39:03 +09:00
/matrix/postgres/bin/cli-non-interactive 'DROP DATABASE matrix_mx_puppet_discord;'
```