Last active
May 21, 2024 02:10
-
-
Save maurizi/325387aee9ea94fbf903 to your computer and use it in GitHub Desktop.
Running Ansible on Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
cygwin-shim.bat /bin/ansible-galaxy %* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
cygwin-shim.bat /bin/ansible-playbook %* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
set COMMAND=%1 | |
REM If you used the standard Cygwin installer this will be C:\cygwin | |
set CYGWIN=%USERPROFILE%\.babun\cygwin | |
REM You can switch this to work with bash with %CYGWIN%\bin\bash.exe | |
set SH=%CYGWIN%\bin\zsh.exe | |
if not exist "%SH%" ( | |
echo cygwin's sh.exe not found. Did you delete %CYGWIN% ? | |
exit /b 255 | |
) | |
"%SH%" -c "[[ -x "%COMMAND%" ]]" | |
if not errorlevel 0 ( | |
echo %COMMAND% not found. Did you uninstall it ? | |
exit /b 255 | |
) | |
"%SH%" -c "%*" |
FWIW, I use this sort of command since I want to mimic logging in.
c:\cygwin64\bin\bash.exe -l -c "echo 'the above is from my login script'"
JAVA_HOME is C:\Java\jdk1.8.0_241
the above is from my login script
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
where should i place the ansible-playbook.bat file?