Skip to content

Instantly share code, notes, and snippets.

@hexylena
Created November 18, 2021 16:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hexylena/3d015026b2fa78459a8cba397a78f2d3 to your computer and use it in GitHub Desktop.
Save hexylena/3d015026b2fa78459a8cba397a78f2d3 to your computer and use it in GitHub Desktop.
Cleanup ansible roles that don't match the expected version
import yaml
import subprocess
with open('requirements.yml', 'r') as handle:
desired = yaml.load(handle)
desired = {x.get('name', x['src']): x['version'] for x in desired}
if any([isinstance(v, int) or isinstance(v, float) for v in desired.values()]):
raise Exception("One of your values is a float! Please make it a string in the yaml file.")
current = subprocess.check_output(['ansible-galaxy', 'role', 'list', '-p', 'roles']).decode('utf8').split('\n')
current = [x[2:].split(', ') for x in current if x.startswith('- ')]
current = {x[0]: x[1].strip() for x in current}
for k, v in desired.items():
# If we haven't installed that library yet
if k not in current:
continue
if v != current[k]:
print("role=%s\tcurrent=%s\tdesired=%s" % (k, current[k], desired[k]))
print("Removing role!")
print(subprocess.check_output(['ansible-galaxy', 'remove', k, '-p', 'roles']).decode('utf-8'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment