2023-01-15 09:18:15 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
roles = []
|
|
|
|
excluded = ['common-suse', 'minion']
|
|
|
|
|
|
|
|
def get():
|
2023-01-21 14:52:48 +01:00
|
|
|
for root in ['pillar', 'salt']:
|
|
|
|
for rootdir, subdirs, files in os.walk(os.path.join(root, 'role')):
|
|
|
|
for file in files:
|
|
|
|
role = os.path.splitext(file)[0]
|
|
|
|
if not role in excluded and not role in roles:
|
|
|
|
roles.append(role)
|
2023-01-15 09:18:15 +01:00
|
|
|
return roles
|
2023-01-21 14:52:48 +01:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
print(get())
|