mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
17 lines
431 B
Bash
Executable file
17 lines
431 B
Bash
Executable file
#!/bin/bash
|
|
# usage: source ./hacking/env-setup
|
|
# modifies environment for running Ansible from checkout
|
|
|
|
PREFIX_PYTHONPATH="$PWD/lib"
|
|
PREFIX_PATH="$PWD/bin"
|
|
|
|
export PYTHONPATH=$PREFIX_PYTHONPATH:$PYTHONPATH
|
|
export PATH=$PREFIX_PATH:$PATH
|
|
export ANSIBLE_LIBRARY="$PWD/library"
|
|
|
|
echo "PATH=$PATH"
|
|
echo "PYTHONPATH=$PYTHONPATH"
|
|
echo "ANSIBLE_LIBRARY=$ANSIBLE_LIBRARY"
|
|
|
|
echo "reminder: specify your host file with -i"
|
|
echo "done."
|