이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
overmind
/
matrix-docker-ansible-deploy
의 미러
https://github.com/spantaleev/matrix-docker-ansible-deploy
보기
1
좋아요
0
포크
0
코드
이슈
0
릴리즈
0
위키
활동
소스 검색
Add license information to files in matrix_playbook_migration/
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
pull/4137/head
Suguru Hirahara
1 년 전
부모
06cafa6908
커밋
1af310864c
No known key found for this signature in database
GPG 키 ID:
E4F9743DAB4B7B75
11개의 변경된 파일
과
50개의 추가작업
그리고
0개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
roles/custom/matrix_playbook_migration/defaults/main.yml
+4
-0
roles/custom/matrix_playbook_migration/tasks/cleanup_matrix_static_files_well_known.yml
+6
-0
roles/custom/matrix_playbook_migration/tasks/cleanup_usr_local_bin.yml
+4
-0
roles/custom/matrix_playbook_migration/tasks/debian_docker_signedby_migration.yml
+4
-0
roles/custom/matrix_playbook_migration/tasks/debian_docker_trusted_gpg_d_migration_migration.yml
+4
-0
roles/custom/matrix_playbook_migration/tasks/devture_traefik_to_matrix_traefik.yml
+4
-0
roles/custom/matrix_playbook_migration/tasks/main.yml
+4
-0
roles/custom/matrix_playbook_migration/tasks/migrate_matrix_mailer.yml
+4
-0
roles/custom/matrix_playbook_migration/tasks/uninstall_matrix_nginx_proxy.yml
+5
-0
roles/custom/matrix_playbook_migration/tasks/uninstall_matrix_ssl.yml
+6
-0
roles/custom/matrix_playbook_migration/tasks/validate_config.yml
+ 5
- 0
roles/custom/matrix_playbook_migration/defaults/main.yml
파일 보기
@@ -1,3 +1,8 @@
# SPDX-FileCopyrightText: 2023 - 2025 Slavi Pantaleev
# SPDX-FileCopyrightText: 2024 Suguru Hirahara
#
# SPDX-License-Identifier: AGPL-3.0-or-later
---
# Controls if (`matrix_prometheus_node_exporter` -> `prometheus_node_exporter`) validation will run.
+ 4
- 0
roles/custom/matrix_playbook_migration/tasks/cleanup_matrix_static_files_well_known.yml
파일 보기
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later
---
# Files used to be installed by the `matrix-base` role into `/matrix/static-files/.well-known/*`.
+ 6
- 0
roles/custom/matrix_playbook_migration/tasks/cleanup_usr_local_bin.yml
파일 보기
@@ -1,3 +1,9 @@
# SPDX-FileCopyrightText: 2022 Dan Arnfield
# SPDX-FileCopyrightText: 2022 Slavi Pantaleev
# SPDX-FileCopyrightText: 2024 Suguru Hirahara
#
# SPDX-License-Identifier: AGPL-3.0-or-later
---
- name: Find leftover Matrix scripts in /usr/local/bin
+ 4
- 0
roles/custom/matrix_playbook_migration/tasks/debian_docker_signedby_migration.yml
파일 보기
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2023 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later
---
- name: Remove old Docker apt repository, potentially lacking signed-by option
+ 4
- 0
roles/custom/matrix_playbook_migration/tasks/debian_docker_trusted_gpg_d_migration_migration.yml
파일 보기
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later
---
- name: Check if the Docker apt repository file exists
+ 4
- 0
roles/custom/matrix_playbook_migration/tasks/devture_traefik_to_matrix_traefik.yml
파일 보기
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2023 - 2024 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later
---
# This migrates Traefik from the old path (`/devture-traefik`) to the new path (`/matrix/traefik`, controlled by `traefik_base_path`),
+ 4
- 0
roles/custom/matrix_playbook_migration/tasks/main.yml
파일 보기
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2022 - 2024 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later
---
- tags:
+ 4
- 0
roles/custom/matrix_playbook_migration/tasks/migrate_matrix_mailer.yml
파일 보기
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later
---
# This migrates the mailer from the old path (`/matrix/mailer`) to the new path (`/matrix/exim-relay`, controlled by `exim_relay_base_path`),
+ 4
- 0
roles/custom/matrix_playbook_migration/tasks/uninstall_matrix_nginx_proxy.yml
파일 보기
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2024 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later
---
- name: Check existence of matrix-nginx-proxy service
+ 5
- 0
roles/custom/matrix_playbook_migration/tasks/uninstall_matrix_ssl.yml
파일 보기
@@ -1,3 +1,8 @@
# SPDX-FileCopyrightText: 2024 Slavi Pantaleev
# SPDX-FileCopyrightText: 2024 Suguru Hirahara
#
# SPDX-License-Identifier: AGPL-3.0-or-later
---
- name: Ensure Matrix SSL-related files are deleted
+ 6
- 0
roles/custom/matrix_playbook_migration/tasks/validate_config.yml
파일 보기
@@ -1,3 +1,9 @@
# SPDX-FileCopyrightText: 2022 - 2025 Slavi Pantaleev
# SPDX-FileCopyrightText: 2024 - 2025 MDAD project contributors
# SPDX-FileCopyrightText: 2024 - 2025 Suguru Hirahara
#
# SPDX-License-Identifier: AGPL-3.0-or-later
---
- name: (Deprecation) Catch and report renamed Matrix playbook settings
쓰기
미리보기
불러오는 중...
취소
저장