Skip to content

Instantly share code, notes, and snippets.

@cdracars
Created September 22, 2014 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdracars/1c999aadd5cfcd72b854 to your computer and use it in GitHub Desktop.
Save cdracars/1c999aadd5cfcd72b854 to your computer and use it in GitHub Desktop.
Download roles from chef server onto local directory
for role in `knife role list`; do
knife role show $role --format=json > $role.json
done
@cdracars
Copy link
Author

You can change role to environment and get all of those as well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment