ソースを参照

Merge pull request #2324 from thedanbob/delete-matrix-scripts

Only delete playbook scripts from /usr/local/bin
pull/2326/head
Slavi Pantaleev 3年前
committed by GitHub
コミット
7900839d40
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更14行の追加2行の削除
  1. +14
    -2
      roles/custom/matrix_playbook_migration/tasks/cleanup_usr_local_bin.yml

+ 14
- 2
roles/custom/matrix_playbook_migration/tasks/cleanup_usr_local_bin.yml ファイルの表示

@@ -3,8 +3,20 @@
- name: Find leftover matrix scripts in /usr/local/bin
ansible.builtin.find:
path: "/usr/local/bin"
patterns: "^matrix-.*"
use_regex: true
patterns:
- matrix-change-user-admin-status
- matrix-dendrite-create-account
- matrix-make-user-admin
- matrix-postgres-cli
- matrix-postgres-cli-non-interactive
- matrix-postgres-update-user-password-hash
- matrix-remove-all
- matrix-ssl-certificates-renew
- matrix-ssl-lets-encrypt-certificates-renew
- matrix-synapse-register-user
- matrix-synapse-s3-storage-provider-migrate
- matrix-synapse-s3-storage-provider-shell
- matrix-synapse-worker-write-pid
register: matrix_usr_local_bin_files_result

- name: Ensure /usr/local/bin does not contain matrix scripts


読み込み中…
キャンセル
保存