diff options
author | Daniil Baturin <daniil@vyos.io> | 2023-01-11 15:02:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 15:02:32 +0000 |
commit | f56221a096f63c8b16456738074acc5202fd7f8b (patch) | |
tree | 1f43f469d6b21e4f625419ceee5b171e66ad4270 /src/conf_mode/service_webproxy.py | |
parent | 5a6c0c4d61112e1ac08a334ab7e68c07342fd679 (diff) | |
parent | a74af52ce857b4a516c70a0ecb2ad484ad2ae942 (diff) | |
download | vyos-1x-f56221a096f63c8b16456738074acc5202fd7f8b.tar.gz vyos-1x-f56221a096f63c8b16456738074acc5202fd7f8b.zip |
Merge pull request #1749 from aapostoliuk/T4927-equuleus
webproxy: T4927: Changed restart to reload-or-restart in commit
Diffstat (limited to 'src/conf_mode/service_webproxy.py')
-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 9e0d73a5b..59c087aaa 100755 --- a/src/conf_mode/service_webproxy.py +++ b/src/conf_mode/service_webproxy.py @@ -245,7 +245,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 |