From 32c01aefa77234dc14a56b424991787ce7d98182 Mon Sep 17 00:00:00 2001 From: kjeld Schouten-Lebbing Date: Thu, 22 Apr 2021 14:04:47 +0200 Subject: [PATCH] Ansible: cd to /ansible in entrypoint --- .containers/apps/ansible/entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.containers/apps/ansible/entrypoint.sh b/.containers/apps/ansible/entrypoint.sh index 09c990a5d1c..e55d06e280e 100755 --- a/.containers/apps/ansible/entrypoint.sh +++ b/.containers/apps/ansible/entrypoint.sh @@ -54,4 +54,6 @@ if [ -f "$ANSIBLE_REQUIREMENTS" ]; then ansible-galaxy install $ANSIBLE_GALAXY_PARAM -r $ANSIBLE_REQUIREMENTS fi +cd /ansible + exec "$@"