summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Breunig <christian@poessinger.com>2023-01-11 10:28:50 +0100
committerGitHub <noreply@github.com>2023-01-11 10:28:50 +0100
commita7acd12facc6163c1004e39d36feb25261e38aad (patch)
treed95f5392044065e19ca76510607fbbde26a659a4
parent0e5ea5a63ab9db9ae04ab09e3af42a6e8e1c4c55 (diff)
parentf6397c1e63f24ea64adda27fe18b057d0abefeee (diff)
downloadvyos-1x-a7acd12facc6163c1004e39d36feb25261e38aad.tar.gz
vyos-1x-a7acd12facc6163c1004e39d36feb25261e38aad.zip
Merge pull request #1748 from aapostoliuk/T4927-sagitta
webproxy: T4927: Changed restart to reload-or-restart in commit
-rwxr-xr-xsrc/conf_mode/service_webproxy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/service_webproxy.py b/src/conf_mode/service_webproxy.py
index 41a1deaa3..658e496a6 100755
--- a/src/conf_mode/service_webproxy.py
+++ b/src/conf_mode/service_webproxy.py
@@ -246,7 +246,7 @@ def apply(proxy):
if os.path.exists(squidguard_db_dir):
chmod_755(squidguard_db_dir)
- call('systemctl restart squid.service')
+ call('systemctl reload-or-restart squid.service')
return None