Changelog: https://roxy-wi.org/changelog#7.1.0
pull/372/head
Aidaho 2023-12-16 17:10:50 +03:00
parent a7ab2ae888
commit 5bba8c6692
2 changed files with 1 additions and 2 deletions

View File

@ -11,7 +11,6 @@ import modules.server.server as server_mod
import modules.roxywi.common as roxywi_common
import modules.service.keepalived as keepalived
import modules.service.ha_cluster as ha_cluster
import modules.service.installation as installation
@bp.before_request

View File

@ -49,7 +49,7 @@ def install_service(service):
try:
inv, server_ips = generate_functions[service](json_data, service)
service_mod.service_actions_after_install(server_ips, service, json_data)
return service_mod.run_ansible(inv, server_ips, service, service), 201
return service_mod.run_ansible(inv, server_ips, service), 201
except Exception as e:
return str(e)