diff options
author | Christian Breunig <christian@poessinger.com> | 2023-01-11 10:28:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 10:28:50 +0100 |
commit | a7acd12facc6163c1004e39d36feb25261e38aad (patch) | |
tree | d95f5392044065e19ca76510607fbbde26a659a4 | |
parent | 0e5ea5a63ab9db9ae04ab09e3af42a6e8e1c4c55 (diff) | |
parent | f6397c1e63f24ea64adda27fe18b057d0abefeee (diff) | |
download | vyos-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-x | src/conf_mode/service_webproxy.py | 2 |
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 |