How to use Ansible and Vagrant for Windows — различия между версиями

Материал из DISCOPAL
Перейти к: навигация, поиск
(Новая страница: «<slideshow title="" style="custis" scaled="true" font="Calibri, Segoe Print, cursive" footer="" headingmark="⌘⌘" /> === No Easy and Right Way === * Install s…»)
 
Строка 1: Строка 1:
<slideshow title="" style="custis" scaled="true" font="Calibri, Segoe Print, cursive" footer="" headingmark="⌘⌘" />
+
<slideshow title="" style="discopal" scaled="true" font="Calibri, Segoe Print, cursive" footer="" headingmark="⌘⌘" />
  
 
=== No Easy and Right Way ===
 
=== No Easy and Right Way ===

Версия 22:35, 8 марта 2016

Автор

Стас Фомин
Дополнительный нижний колонтитул

Стас Фомин, 13:17, 9 марта 2016

No Easy and Right Way

  • Install standard Vagrand for Windows
    • Put vagrand in PATH
  • For installing Ansible
    • Need Cygwin
    • Use BabunHumanized Cygwin.
      • Install Babun
      • A Little Magic: run
"%USERPROFILE%\.babun\cygwin\bin\dash.exe" -c '/usr/bin/rebaseall -v'
      • Now, run
%USERPROFILE%\.babun\babun.bat

Install Ansible on Babun

Now, run

%USERPROFILE%\.babun\babun.bat
wget https://bootstrap.pypa.io/ez_setup.py -O - | python
/bin/easy_install pip</p>
/bin/pip install ansible

ansible-playbook.bat

@echo off
set CYGWIN=%USERPROFILE%\.babun\cygwin
set SH=%CYGWIN%\bin\bash.exe
"%SH%" -c "/bin/ansible-playbook %*"

put ansible-playbook.bat somewhere in path

References ⌘⌘