diff options
author | zdc <zdc@users.noreply.github.com> | 2022-07-06 15:31:53 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-06 15:31:53 +0300 |
commit | 484350192470147627f384bf759e913265b78be0 (patch) | |
tree | d0d39d4124e2eca92e1e643856569cf915d95619 | |
parent | 459f8ea10227b5644083ddcf8a0e8b63faa22313 (diff) | |
parent | d9bf37bc58ca299b5838b0414f180fa5c17c02e7 (diff) | |
download | vyos-1x-484350192470147627f384bf759e913265b78be0.tar.gz vyos-1x-484350192470147627f384bf759e913265b78be0.zip |
Merge pull request #1396 from aapostoliuk/T4513-equuleus
webproxy: T4513: Fixed path to webroxy log files
-rw-r--r-- | op-mode-definitions/webproxy.xml.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/op-mode-definitions/webproxy.xml.in b/op-mode-definitions/webproxy.xml.in index f8ec8fb0a..5ae1577d8 100644 --- a/op-mode-definitions/webproxy.xml.in +++ b/op-mode-definitions/webproxy.xml.in @@ -12,7 +12,7 @@ <properties> <help>Monitor the last lines of the squid access log</help> </properties> - <command>if [ -f /var/log/squid3/access.log ]; then sudo tail --follow=name /var/log/squid3/access.log; else echo "WebProxy cache-log does not exist"; fi</command> + <command>if [ -f /var/log/squid/access.log ]; then sudo tail --follow=name /var/log/squid/access.log; else echo "WebProxy access-log does not exist"; fi</command> </node> <node name="background"> <properties> @@ -37,7 +37,7 @@ <properties> <help>Monitor the last lines of the squid cache log</help> </properties> - <command>if [ -f /var/log/squid3/cache.log ]; then sudo tail --follow=name /var/log/squid3/cache.log; else echo "WebProxy cache-log does not exist"; fi</command> + <command>if [ -f /var/log/squid/cache.log ]; then sudo tail --follow=name /var/log/squid/cache.log; else echo "WebProxy cache-log does not exist"; fi</command> </node> </children> </node> |