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

Материал из DISCOPAL
Перейти к: навигация, поиск
(References ⌘⌘)
 
(не показано 7 промежуточных версий этого же участника)
Строка 5: Строка 5:
 
** Put <tt>vagrand</tt> in PATH
 
** Put <tt>vagrand</tt> in PATH
 
* For installing Ansible
 
* For installing Ansible
** Need {{@|Cygwin}}
+
** Need {{@|Cygwin}} — arrr…
 
** Use [http://babun.github.io/ Babun] — {{!|Humanized Cygwin}}.
 
** Use [http://babun.github.io/ Babun] — {{!|Humanized Cygwin}}.
 
*** Install [http://babun.github.io/ Babun]
 
*** Install [http://babun.github.io/ Babun]
 
*** A Little Magic: run
 
*** A Little Magic: run
 
  "%USERPROFILE%\.babun\cygwin\bin\dash.exe" -c '/usr/bin/rebaseall -v'
 
  "%USERPROFILE%\.babun\cygwin\bin\dash.exe" -c '/usr/bin/rebaseall -v'
*** Now, run
 
%USERPROFILE%\.babun\babun.bat
 
  
 
=== Install Ansible on Babun ⌘⌘ ===
 
=== Install Ansible on Babun ⌘⌘ ===
Строка 18: Строка 16:
 
<code-bash>
 
<code-bash>
 
wget https://bootstrap.pypa.io/ez_setup.py -O - | python
 
wget https://bootstrap.pypa.io/ez_setup.py -O - | python
/bin/easy_install pip</p>
+
/bin/easy_install pip
 
/bin/pip install ansible
 
/bin/pip install ansible
 
</code-bash>
 
</code-bash>
Строка 31: Строка 29:
  
 
put <tt>ansible-playbook.bat</tt> somewhere in path
 
put <tt>ansible-playbook.bat</tt> somewhere in path
 +
 +
=== Useful Magic ⌘⌘ ===
 +
* Last working VB for Win and OpenVPN → [http://download.virtualbox.org/virtualbox/4.3.24/VirtualBox-4.3.24-98716-Win.exe 4.3.24]
 +
 +
[https://www.virtualbox.org/ticket/13839]:
 +
VBoxManage setextradata global VBoxInternal2/HostDNSSuffixesIgnore 1
  
 
=== References ⌘⌘ ===
 
=== References ⌘⌘ ===
 +
See also:
 
* http://www.azavea.com/blogs/labs/2014/10/running-vagrant-with-ansible-provisioning-on-windows/
 
* http://www.azavea.com/blogs/labs/2014/10/running-vagrant-with-ansible-provisioning-on-windows/
 
* https://habrahabr.ru/post/224047/
 
* https://habrahabr.ru/post/224047/
-->
 
 
<slideshow title="" style="discopal" scaled="true" font="Calibri, Segoe Print, cursive" footer="" headingmark="⌘⌘" />=== No Easy and Right Way ===* Install standard Vagrand for Windows** Put <tt>vagrand</tt> in PATH* For installing Ansible** Need {{@|Cygwin}}** Use [http://babun.github.io/ Babun] — {{!|Humanized Cygwin}}.*** Install [http://babun.github.io/ 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<code-bash>wget https://bootstrap.pypa.io/ez_setup.py -O - | python/bin/easy_install pip</p>/bin/pip install ansible</code-bash>=== ansible-playbook.bat ===<pre>@echo offset CYGWIN=%USERPROFILE%\.babun\cygwinset SH=%CYGWIN%\bin\bash.exe"%SH%" -c "/bin/ansible-playbook %*"</pre>put <tt>ansible-playbook.bat</tt> somewhere in path=== References ⌘⌘ ===* http://www.azavea.com/blogs/labs/2014/10/running-vagrant-with-ansible-provisioning-on-windows/* https://habrahabr.ru/post/224047/Translate
 
 
discopal — select a translation: null
 
 
[dˈɪskəpl]
 
 
discopal
 
 
.
 
 
See also:
 

Текущая версия на 13:17, 9 марта 2016

Автор

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

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

No Easy and Right Way ⌘⌘

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

Install Ansible on Babun ⌘⌘

Now, run

%USERPROFILE%\.babun\babun.bat
wget https://bootstrap.pypa.io/ez_setup.py -O - | python
/bin/easy_install pip
/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

Useful Magic ⌘⌘

  • Last working VB for Win and OpenVPN → 4.3.24

[1]:

VBoxManage setextradata global VBoxInternal2/HostDNSSuffixesIgnore 1

References ⌘⌘

See also: