Open kenorb opened 1 month ago
Currently ansible-playbook is hardcoded as:
let cmd = ["ansible-playbook", playbook]
I need it to prefix with wsl on Windows.
wsl
Would be good to allow some variable to override the default command, e.g.
cmd = os.environ.get('ANSIBLE_PLAYBOOK', 'ansible-playbook').split() + [playbook]
?
Sure, a new input for this could be added. Feel free to PR.
Currently ansible-playbook is hardcoded as:
I need it to prefix with
wsl
on Windows.Would be good to allow some variable to override the default command, e.g.
?