Created
March 27, 2017 07:11
-
-
Save pavlov99/c22541856f413920edd95dc61da160e8 to your computer and use it in GitHub Desktop.
Find your role's id in ansible-galaxy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ansible-galaxy info YourUser.RoleName | grep -E 'id: [0-9]' | awk {'print $2'} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I used this script to make the badges for my first ansible role. Thanks!