mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Don't hardcode list of delete functions to loop through
This commit is contained in:
@@ -145,8 +145,8 @@ def main():
|
|||||||
args = parse_args()
|
args = parse_args()
|
||||||
authenticate()
|
authenticate()
|
||||||
|
|
||||||
for func in [delete_rax, delete_rax_clb, delete_rax_keypair,
|
funcs = [f for n, f in globals().items() if n.startswith('delete_rax')]
|
||||||
delete_rax_network, delete_rax_cbs, delete_rax_cdb]:
|
for func in sorted(funcs, key=lambda f: f.__name__):
|
||||||
try:
|
try:
|
||||||
func(args)
|
func(args)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|||||||
Reference in New Issue
Block a user