This commit is contained in:
2022-01-21 09:47:54 +00:00
parent e3b19277cb
commit 6cace50d58

View File

@@ -18,7 +18,7 @@ def securitygroup_check(groupName:str):
def securitygroup_create(groupName:str): def securitygroup_create(groupName:str):
try: try:
subprocess.run(['groupadd ', 'groupName']) subprocess.run(['groupadd', groupName])
except: except:
print(f"Failed to create group " + groupName) print(f"Failed to create group " + groupName)
raise raise