tiangolo / ansible-babun-bootstrap

Simple shell script to setup Ansible within Babun

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ansible-babun-bootstrap

🚨 DEPRECATED 🚨

I'm no longer working on Windows as my main system (for several years I've been using mainly Ubuntu Linux). And now Windows 10 has WSL (Windows Subsystem for Linux).

If you're a developer, you would have a much better time using WSL than Babun, and as it's Linux, it will be natively compatible with Ansible. So, you no longer need this script.

Description

Simple shell script to setup Ansible within Babun, to allow using Ansible from Windows without needing a virtual machine.

Installation

  • Install Babun and start a terminal.
  • Run the following command:
curl -s https://raw.githubusercontent.com/tiangolo/ansible-babun-bootstrap/master/install.sh | source /dev/stdin

Note: the previous command will get a script from this repository and run it immediately, performing all the needed steps to install everything (the same steps described in "Manual installation"). If you don't want to run it, you can do a manual installation.


Manual installation

  • Go to your home directory:
cd
  • Clone this repository:
git clone https://github.com/tiangolo/ansible-babun-bootstrap
  • Enter the repository directory:
cd ansible-babun-bootstrap
  • Run the bootstrap script:
source ./ansible-babun-bootstrap.sh

All the prerequisites will be installed and Ansible will run from: $HOME/ansible/.

A file /etc/ansible/hosts will be created with a default (127.0.0.1) host.

A file ~/.ansible.cfg will be created with default configurations, including setting paramiko as the transport to allow using passwords.

A bootstrap script will be added to .zshrc in $HOME, every time you start babun it will update Ansible and setup the environment. If you don't want to update Ansible every time (it takes some time), you can edit ~/.zshrc and set BOOTSTRAP_ANSIBLE_UPDATE=0.

About

Simple shell script to setup Ansible within Babun


Languages

Language:Shell 70.9%Language:Batchfile 29.1%