From 9c7a4b43278e2da0c423089100fb0878239e0aa6 Mon Sep 17 00:00:00 2001 From: John Estabrook Date: Fri, 6 Oct 2023 22:27:19 -0500 Subject: http-api: T2612: reload server within configsession for api self-config (cherry picked from commit 93d2ea7d635c7aa5acf3000654393ea48b7c6405) --- src/conf_mode/http-api.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/conf_mode') diff --git a/src/conf_mode/http-api.py b/src/conf_mode/http-api.py index 793a90d88..d8fe3b736 100755 --- a/src/conf_mode/http-api.py +++ b/src/conf_mode/http-api.py @@ -27,6 +27,7 @@ from vyos.config import Config from vyos.configdep import set_dependents, call_dependents from vyos.template import render from vyos.utils.process import call +from vyos.utils.process import is_systemd_service_running from vyos import ConfigError from vyos import airbag airbag.enable() @@ -130,7 +131,10 @@ def apply(http_api): service_name = 'vyos-http-api.service' if http_api is not None: - call(f'systemctl restart {service_name}') + if is_systemd_service_running(f'{service_name}'): + call(f'systemctl reload {service_name}') + else: + call(f'systemctl restart {service_name}') else: call(f'systemctl stop {service_name}') -- cgit v1.2.3