mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-01-10 05:13:50 +00:00
8e63f12fbe
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
19 lines
581 B
YAML
19 lines
581 B
YAML
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
|
|
- name: Resetting Hookshot's crypto store
|
|
ansible.builtin.command:
|
|
cmd: |
|
|
{{ devture_systemd_docker_base_host_command_docker }} run
|
|
--rm
|
|
--name={{ matrix_hookshot_identifier }}-reset-crypto
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }}
|
|
--cap-drop=ALL
|
|
--mount type=bind,src={{ matrix_hookshot_base_path }}/config.yml,dst=/config.yml
|
|
{{ matrix_hookshot_docker_image }}
|
|
yarn start:resetcrypto
|
|
changed_when: true
|