Skip to content

Instantly share code, notes, and snippets.

@0xdeadbeefJERKY
Created September 21, 2020 00:57
Show Gist options
  • Save 0xdeadbeefJERKY/153e3097b01d8ffa9a1e2b9c03407c81 to your computer and use it in GitHub Desktop.
Save 0xdeadbeefJERKY/153e3097b01d8ffa9a1e2b9c03407c81 to your computer and use it in GitHub Desktop.
Simple bash script to configure the directory layout according to Ansible's official best practices. Note that the role sub-directories should be created using something like molecule, ansible-galaxy, etc.
#!/usr/bin/env bash
# Create inventory file(s)
touch production staging
# Create various directories
mkdir -p group_vars host_vars library module_utils filter_plugins roles
# Create main playbook
touch site.yml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment