mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-15 15:02:51 +01:00
8f16524789
Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/3108 Related to https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/3562
17 lines
276 B
Django/Jinja
17 lines
276 B
Django/Jinja
#jinja2: lstrip_blocks: "True"
|
|
#!/bin/bash
|
|
|
|
args=$@
|
|
|
|
if [ $# -eq 0 ]; then
|
|
args="help"
|
|
fi
|
|
|
|
if [ -t 0 ]; then
|
|
tty_option="-it"
|
|
else
|
|
tty_option=""
|
|
fi
|
|
|
|
{{ devture_systemd_docker_base_host_command_docker }} exec $tty_option matrix-authentication-service mas-cli $args
|