Created
November 18, 2021 16:31
-
-
Save hexylena/3d015026b2fa78459a8cba397a78f2d3 to your computer and use it in GitHub Desktop.
Cleanup ansible roles that don't match the expected version
This file contains 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
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