diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-11-28 17:42:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-28 17:42:33 +0100 |
commit | 12305954d54aa04e98f061751813b99165c22597 (patch) | |
tree | 762cdd9846d315baae749366b63914438fd7f77a | |
parent | 5b0ed7fda69db3e4a80892dd21e97c0368193da5 (diff) | |
parent | ba2074d25bd4afda4bf891b8e404ffb91d5769c7 (diff) | |
download | vyos-1x-12305954d54aa04e98f061751813b99165c22597.tar.gz vyos-1x-12305954d54aa04e98f061751813b99165c22597.zip |
Merge pull request #1682 from aapostoliuk/T4844-sagitta
T4844: Set DB directory rigths 755 in the update webproxy script
-rwxr-xr-x | src/op_mode/webproxy_update_blacklist.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/op_mode/webproxy_update_blacklist.sh b/src/op_mode/webproxy_update_blacklist.sh index 43a4b79fc..d5f301b75 100755 --- a/src/op_mode/webproxy_update_blacklist.sh +++ b/src/op_mode/webproxy_update_blacklist.sh @@ -88,7 +88,7 @@ if [[ -n $update ]] && [[ $update -eq "yes" ]]; then # fix permissions chown -R proxy:proxy ${db_dir} - chmod 2770 ${db_dir} + chmod 755 ${db_dir} logger --priority WARNING "webproxy blacklist entries updated (${count_before}/${count_after})" |