mirror of
https://github.com/zahodi/ansible-mikrotik.git
synced 2025-07-14 12:14:21 +02:00
11 lines
213 B
Bash
11 lines
213 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
ABSOLUTE_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||
|
pushd .
|
||
|
|
||
|
cd "$ABSOLUTE_PATH"
|
||
|
export PYTHONPATH=./pythonlibs/
|
||
|
ansible-playbook tests.yml --diff -i 127.0.0.1, $@
|
||
|
|
||
|
popd >/dev/null
|