Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

126 строки
6.0 KiB

  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) 2018-2025, Slavi Pantaleev, Aine Etke, MDAD community members
  3. # This file is distributed under the same license as the matrix-docker-ansible-deploy package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: matrix-docker-ansible-deploy \n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2025-01-27 09:54+0200\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #: ../../../docs/maintenance-upgrading-services.md:1
  19. msgid "Upgrading the Matrix services"
  20. msgstr ""
  21. #: ../../../docs/maintenance-upgrading-services.md:3
  22. msgid "This playbook not only installs the various Matrix services for you, but can also upgrade them as new versions are made available."
  23. msgstr ""
  24. #: ../../../docs/maintenance-upgrading-services.md:5
  25. msgid "While this playbook helps you to set up Matrix services and maintain them, it will **not** automatically run the maintenance task for you. You will need to update the playbook and re-run it **manually**."
  26. msgstr ""
  27. #: ../../../docs/maintenance-upgrading-services.md:7
  28. msgid "The upstream projects, which this playbook makes use of, occasionally if not often suffer from security vulnerabilities (for example, see [here](https://github.com/element-hq/element-web/security) for known ones on Element Web)."
  29. msgstr ""
  30. #: ../../../docs/maintenance-upgrading-services.md:9
  31. msgid "Since it is unsafe to keep outdated services running on the server connected to the internet, please consider to update the playbook and re-run it periodically, in order to keep the services up-to-date."
  32. msgstr ""
  33. #: ../../../docs/maintenance-upgrading-services.md:11
  34. msgid "The developers of this playbook strive to maintain the playbook updated, so that you can re-run the playbook to address such vulnerabilities. It is **your responsibility** to keep your server and the services on it up-to-date."
  35. msgstr ""
  36. #: ../../../docs/maintenance-upgrading-services.md:13
  37. msgid "If you want to be notified when new versions of Synapse are released, you should join the Synapse Homeowners room: [#homeowners:matrix.org](https://matrix.to/#/#homeowners:matrix.org)."
  38. msgstr ""
  39. #: ../../../docs/maintenance-upgrading-services.md:15
  40. msgid "Steps to upgrade the Matrix services"
  41. msgstr ""
  42. #: ../../../docs/maintenance-upgrading-services.md:17
  43. msgid "Check the changelog"
  44. msgstr ""
  45. #: ../../../docs/maintenance-upgrading-services.md:19
  46. msgid "Before updating the playbook and the Ansible roles in the playbook, take a look at [the changelog](../CHANGELOG.md) to see if there have been any backward-incompatible changes that you need to take care of."
  47. msgstr ""
  48. #: ../../../docs/maintenance-upgrading-services.md:21
  49. msgid "Update the playbook and the Ansible roles"
  50. msgstr ""
  51. #: ../../../docs/maintenance-upgrading-services.md:23
  52. msgid "If it looks good to you, go to the `matrix-docker-ansible-deploy` directory, update your playbook directory and all upstream Ansible roles (defined in the `requirements.yml` file) by running:"
  53. msgstr ""
  54. #: ../../../docs/maintenance-upgrading-services.md:25
  55. msgid "either: `just update`"
  56. msgstr ""
  57. #: ../../../docs/maintenance-upgrading-services.md:26
  58. msgid "or: a combination of `git pull` and `just roles` (or `make roles` if you have `make` program on your computer instead of `just`)"
  59. msgstr ""
  60. #: ../../../docs/maintenance-upgrading-services.md:28
  61. msgid "If you don't have either `just` tool or `make` program, you can run the `ansible-galaxy` tool directly: `rm -rf roles/galaxy; ansible-galaxy install -r requirements.yml -p roles/galaxy/ --force`"
  62. msgstr ""
  63. #: ../../../docs/maintenance-upgrading-services.md:30
  64. msgid "**Note**: for details about `just` commands, take a look at: [Running `just` commands](just.md)."
  65. msgstr ""
  66. #: ../../../docs/maintenance-upgrading-services.md:32
  67. msgid "Re-run the playbook setup"
  68. msgstr ""
  69. #: ../../../docs/maintenance-upgrading-services.md:34
  70. msgid "After updating the Ansible roles, then re-run the [playbook setup](installing.md#maintaining-your-setup-in-the-future) and restart all services:"
  71. msgstr ""
  72. #: ../../../docs/maintenance-upgrading-services.md:40
  73. msgid "If you remove components from `vars.yml`, or if we switch some component from being installed by default to not being installed by default anymore, you'd need to run the setup command with the `setup-all` tag as below:"
  74. msgstr ""
  75. #: ../../../docs/maintenance-upgrading-services.md:46
  76. msgid "**Notes**:"
  77. msgstr ""
  78. #: ../../../docs/maintenance-upgrading-services.md:48
  79. msgid "The `ensure-matrix-users-created` playbook tag makes the playbook automatically create the bot's user account, if any."
  80. msgstr ""
  81. #: ../../../docs/maintenance-upgrading-services.md:50
  82. msgid "Our estimation is that running `--tags=install-all,start` is approximately from **2 to 5 times faster** than running `setup-all,ensure-matrix-users-created,start`. See [this entry](../CHANGELOG.md#2x-5x-performance-improvements-in-playbook-runtime) on `CHANGELOG.md` for more information."
  83. msgstr ""
  84. #: ../../../docs/maintenance-upgrading-services.md:52
  85. msgid "The shortcut commands with the [`just` program](just.md) are also available: `just install-all` or `just setup-all`. Note these shortcuts run the `ensure-matrix-users-created` tag too."
  86. msgstr ""
  87. #: ../../../docs/maintenance-upgrading-services.md:54
  88. msgid "See [this page on the playbook tags](playbook-tags.md) for more information about those tags."
  89. msgstr ""
  90. #: ../../../docs/maintenance-upgrading-services.md:56
  91. msgid "PostgreSQL major version upgrade"
  92. msgstr ""
  93. #: ../../../docs/maintenance-upgrading-services.md:58
  94. msgid "Major version upgrades to the internal PostgreSQL database are not done automatically. Upgrades must be performed manually."
  95. msgstr ""
  96. #: ../../../docs/maintenance-upgrading-services.md:60
  97. msgid "For details about upgrading it, refer to the [upgrading PostgreSQL guide](maintenance-postgres.md#upgrading-postgresql)."
  98. msgstr ""