Only delete playbook scripts from /usr/local/bin

This commit is contained in:
Dan Arnfield 2022-12-07 13:26:02 -06:00
parent 6a5a09ba9b
commit 5823f1f298
1 changed files with 14 additions and 2 deletions

View File

@ -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