Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

216 lines
7.4 KiB

  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) 2018-2024, Slavi Pantaleev, Aine Etke, MDAD community
  3. # members
  4. # This file is distributed under the same license as the
  5. # matrix-docker-ansible-deploy package.
  6. # FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
  7. #
  8. #, fuzzy
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: matrix-docker-ansible-deploy \n"
  12. "Report-Msgid-Bugs-To: \n"
  13. "POT-Creation-Date: 2024-12-16 12:05+0900\n"
  14. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  15. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  16. "Language: jp\n"
  17. "Language-Team: jp <LL@li.org>\n"
  18. "MIME-Version: 1.0\n"
  19. "Content-Type: text/plain; charset=utf-8\n"
  20. "Content-Transfer-Encoding: 8bit\n"
  21. "Generated-By: Babel 2.16.0\n"
  22. #: ../../../docs/configuring-playbook-backup-borg.md:1
  23. msgid "Setting up BorgBackup (optional)"
  24. msgstr ""
  25. #: ../../../docs/configuring-playbook-backup-borg.md:3
  26. msgid ""
  27. "The playbook can install and configure "
  28. "[BorgBackup](https://www.borgbackup.org/) (short: Borg) with "
  29. "[borgmatic](https://torsion.org/borgmatic/) for you."
  30. msgstr ""
  31. #: ../../../docs/configuring-playbook-backup-borg.md:5
  32. msgid ""
  33. "BorgBackup is a deduplicating backup program with optional compression "
  34. "and encryption. That means your daily incremental backups can be stored "
  35. "in a fraction of the space and is safe whether you store it at home or on"
  36. " a cloud service."
  37. msgstr ""
  38. #: ../../../docs/configuring-playbook-backup-borg.md:7
  39. msgid ""
  40. "You will need a remote server where BorgBackup will store the backups. "
  41. "There are hosted, BorgBackup compatible solutions available, such as "
  42. "[BorgBase](https://www.borgbase.com)."
  43. msgstr ""
  44. #: ../../../docs/configuring-playbook-backup-borg.md:9
  45. msgid ""
  46. "The backup will run based on `backup_borg_schedule` var (systemd timer "
  47. "calendar), default: 4am every day."
  48. msgstr ""
  49. #: ../../../docs/configuring-playbook-backup-borg.md:11
  50. msgid ""
  51. "By default, if you're using the integrated Postgres database server (as "
  52. "opposed to [an external Postgres server](configuring-playbook-external-"
  53. "postgres.md)), backups with BorgBackup will also include dumps of your "
  54. "Postgres database. An alternative solution for backing up the Postgres "
  55. "database is [postgres backup](configuring-playbook-postgres-backup.md). "
  56. "If you decide to go with another solution, you can disable Postgres-"
  57. "backup support for BorgBackup using the `backup_borg_postgresql_enabled` "
  58. "variable."
  59. msgstr ""
  60. #: ../../../docs/configuring-playbook-backup-borg.md:13
  61. msgid ""
  62. "**Note**: the component is not managed by this repository but its [own "
  63. "repository](https://github.com/mother-of-all-self-hosting/ansible-role-"
  64. "backup_borg)."
  65. msgstr ""
  66. #: ../../../docs/configuring-playbook-backup-borg.md:15
  67. msgid "Prerequisites"
  68. msgstr ""
  69. #: ../../../docs/configuring-playbook-backup-borg.md:17
  70. msgid ""
  71. "If you do not disable Postgres-backup support, make sure that the "
  72. "Postgres version of your homeserver's database is compatible with "
  73. "borgmatic."
  74. msgstr ""
  75. #: ../../../docs/configuring-playbook-backup-borg.md:19
  76. msgid "Create a new SSH key:"
  77. msgstr ""
  78. #: ../../../docs/configuring-playbook-backup-borg.md:25
  79. msgid ""
  80. "This can be done on any machine and you don't need to place the key in "
  81. "the `.ssh` folder. It will be added to the Ansible config later."
  82. msgstr ""
  83. #: ../../../docs/configuring-playbook-backup-borg.md:27
  84. msgid ""
  85. "Add the **public** part of this SSH key (the `matrix-borg-backup.pub` "
  86. "file) to your BorgBackup provider/server:"
  87. msgstr ""
  88. #: ../../../docs/configuring-playbook-backup-borg.md:29
  89. msgid ""
  90. "If you plan to use a hosted solution, follow their instructions. If you "
  91. "have your own server, copy the key over:"
  92. msgstr ""
  93. #: ../../../docs/configuring-playbook-backup-borg.md:39
  94. msgid "Adjusting the playbook configuration"
  95. msgstr ""
  96. #: ../../../docs/configuring-playbook-backup-borg.md:41
  97. msgid ""
  98. "Minimal working configuration "
  99. "(`inventory/host_vars/matrix.example.com/vars.yml`) to enable BorgBackup:"
  100. msgstr ""
  101. #: ../../../docs/configuring-playbook-backup-borg.md:58
  102. msgid "where:"
  103. msgstr ""
  104. #: ../../../docs/configuring-playbook-backup-borg.md:60
  105. msgid "USER - SSH user of a provider/server"
  106. msgstr ""
  107. #: ../../../docs/configuring-playbook-backup-borg.md:61
  108. msgid "HOST - SSH host of a provider/server"
  109. msgstr ""
  110. #: ../../../docs/configuring-playbook-backup-borg.md:62
  111. msgid ""
  112. "REPO - BorgBackup repository name, it will be initialized on backup "
  113. "start, eg: `matrix`, regarding Syntax see [Remote "
  114. "repositories](https://borgbackup.readthedocs.io/en/stable/usage/general.html"
  115. "#repository-urls)"
  116. msgstr ""
  117. #: ../../../docs/configuring-playbook-backup-borg.md:63
  118. msgid ""
  119. "PASSPHRASE - passphrase used for encrypting backups, you may generate it "
  120. "with `pwgen -s 64 1` or use any password manager"
  121. msgstr ""
  122. #: ../../../docs/configuring-playbook-backup-borg.md:64
  123. msgid ""
  124. "PRIVATE KEY - the content of the **private** part of the SSH key you "
  125. "created before. The whole key (all of its belonging lines) under "
  126. "`backup_borg_ssh_key_private` needs to be indented with 2 spaces"
  127. msgstr ""
  128. #: ../../../docs/configuring-playbook-backup-borg.md:66
  129. msgid ""
  130. "To backup without encryption, add `backup_borg_encryption: 'none'` to "
  131. "your vars. This will also enable the "
  132. "`backup_borg_unknown_unencrypted_repo_access_is_ok` variable."
  133. msgstr ""
  134. #: ../../../docs/configuring-playbook-backup-borg.md:68
  135. msgid ""
  136. "`backup_borg_location_source_directories` defines the list of directories"
  137. " to back up: it's set to `{{ matrix_base_data_path }}` by default, which "
  138. "is the base directory for every service's data, such as Synapse, Postgres"
  139. " and the bridges. You might want to exclude certain directories or file "
  140. "patterns from the backup using the "
  141. "`backup_borg_location_exclude_patterns` variable."
  142. msgstr ""
  143. #: ../../../docs/configuring-playbook-backup-borg.md:70
  144. msgid ""
  145. "Check the [backup_borg role](https://github.com/mother-of-all-self-"
  146. "hosting/ansible-role-backup_borg)'s "
  147. "[defaults/main.yml](https://github.com/mother-of-all-self-hosting"
  148. "/ansible-role-backup_borg/blob/main/defaults/main.yml) file for the full "
  149. "list of available options."
  150. msgstr ""
  151. #: ../../../docs/configuring-playbook-backup-borg.md:72
  152. msgid "Installing"
  153. msgstr ""
  154. #: ../../../docs/configuring-playbook-backup-borg.md:74
  155. msgid ""
  156. "After configuring the playbook, run it with [playbook tags](playbook-"
  157. "tags.md) as below:"
  158. msgstr ""
  159. #: ../../../docs/configuring-playbook-backup-borg.md:81
  160. msgid ""
  161. "The shortcut commands with the [`just` program](just.md) are also "
  162. "available: `just install-all` or `just setup-all`"
  163. msgstr ""
  164. #: ../../../docs/configuring-playbook-backup-borg.md:83
  165. msgid ""
  166. "`just install-all` is useful for maintaining your setup quickly ([2x-5x "
  167. "faster](../CHANGELOG.md#2x-5x-performance-improvements-in-playbook-"
  168. "runtime) than `just setup-all`) when its components remain unchanged. If "
  169. "you adjust your `vars.yml` to remove other components, you'd need to run "
  170. "`just setup-all`, or these components will still remain installed. Note "
  171. "these shortcuts run the `ensure-matrix-users-created` tag too."
  172. msgstr ""
  173. #: ../../../docs/configuring-playbook-backup-borg.md:85
  174. msgid "Manually start a backup"
  175. msgstr ""
  176. #: ../../../docs/configuring-playbook-backup-borg.md:87
  177. msgid ""
  178. "For testing your setup it can be helpful to not wait until 4am. If you "
  179. "want to run the backup immediately, log onto the server and run "
  180. "`systemctl start matrix-backup-borg`. This will not return until the "
  181. "backup is done, so possibly a long time. Consider using "
  182. "[tmux](https://en.wikipedia.org/wiki/Tmux) if your SSH connection is "
  183. "unstable."
  184. msgstr ""