docker.images/ansible.awx/awx-17.1.0/tools/scripts/awx-python

12 lines
263 B
Bash
Executable File

#!/usr/bin/env bash
# Enable Tower virtualenv
for venv_path in /var/lib/awx/venv/awx; do
if [ -f $venv_path/bin/activate ]; then
. $venv_path/bin/activate
fi
done
# Run the requested Python command, using the interpreter from the path
exec python3 "$@"