Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 933 Bytes

MANUAL_SETUP.md

File metadata and controls

25 lines (16 loc) · 933 Bytes

Setting up environment 🏗️

Let's start by installing Ansible - from their installation guide we can use pip, but since we are on Arch:

$ sudo pacman -S ansible-core ansible

Downloading Ansible Collections

This project uses some external modules (called collections) from Ansible Galaxy. You can find which ones on the requirements.yml. To install them, run:

$ ansible-galaxy collection install -r requirements.yml

Defining your variables

To prevent pushing sensitive data, like usernames and password, and increase the personalization of this project, an external variables file was created. If you create it from the template, follow its instructions to fill, at least, all the needed vars.

Copy the template file and then edit vars.yml.

$ cp vars_template.yml vars.yml