10 lines
210 B
Bash
10 lines
210 B
Bash
|
#!/bin/sh
|
||
|
# -*- mode: sh; tab-width: 8; coding: utf-8-unix -*-
|
||
|
|
||
|
ROLE=base
|
||
|
prog=$( basename $0 .bash )
|
||
|
|
||
|
export ANSIBLE_CONFIG=/o/data/TestForge/src/ansible
|
||
|
|
||
|
/usr/local/bin/python3.sh /usr/local/bin/ansible "$@"
|