Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sonicintrusion/dfd5e36a23ab6cacb26391f6ee3c1ba3 to your computer and use it in GitHub Desktop.
Save sonicintrusion/dfd5e36a23ab6cacb26391f6ee3c1ba3 to your computer and use it in GitHub Desktop.
script to create ansible playbook structure
#!/bin/bash
# Script to create ansible playbook directories
# define your roles here
roles=(upgrade packages)
directories=(tasks handlers files default vars templates)
# create playbook
mkdir global_vars
for i in ${roles[@]}; do
for j in ${directories[@]}; do
mkdir -p ${i}/${j}
done
done
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment