diff options
author | Juraj Lutter <otis@FreeBSD.org> | 2021-09-05 15:11:28 +0000 |
---|---|---|
committer | Juraj Lutter <otis@FreeBSD.org> | 2021-09-19 21:14:01 +0000 |
commit | eeb45e075e420a95a42f6022113cd58ee6b833fa (patch) | |
tree | af7317ffd9e235a8ca2d8c377b3051f2f54c0cb5 /net-mgmt/zabbix5-server/Makefile | |
parent | 7737d5d3b1e94c878f356e1253c264d59bb28d3c (diff) | |
download | ports-eeb45e075e420a95a42f6022113cd58ee6b833fa.tar.gz ports-eeb45e075e420a95a42f6022113cd58ee6b833fa.zip |
Diffstat (limited to 'net-mgmt/zabbix5-server/Makefile')
-rw-r--r-- | net-mgmt/zabbix5-server/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net-mgmt/zabbix5-server/Makefile b/net-mgmt/zabbix5-server/Makefile index f7cad872caa3..e7a610a53858 100644 --- a/net-mgmt/zabbix5-server/Makefile +++ b/net-mgmt/zabbix5-server/Makefile @@ -1,7 +1,7 @@ # Created by: Pakhom Golynga <pg@pakhom.spb.ru> PORTNAME= zabbix5 -DISTVERSION= 5.0.14 +DISTVERSION= 5.0.15 PORTREVISION?= 0 CATEGORIES= net-mgmt MASTER_SITES= https://cdn.zabbix.com/zabbix/sources/stable/${DISTVERSION:R}/ @@ -148,18 +148,24 @@ post-patch: @${REINPLACE_CMD} -e 's#/tmp/zabbix_server.pid#/var/run/zabbix/zabbix_server.pid#g' \ ${WRKSRC}/conf/zabbix_server.conf \ ${WRKSRC}/src/zabbix_server/server.c + @${REINPLACE_CMD} -e 's#/tmp/zabbix_server.log#/var/log/zabbix/zabbix_server.log#g' \ + ${WRKSRC}/conf/zabbix_server.conf .endif .if ${ZABBIX_BUILD} == "proxy" @${REINPLACE_CMD} -e 's#/tmp/zabbix_proxy.pid#/var/run/zabbix/zabbix_proxy.pid#g' \ ${WRKSRC}/conf/zabbix_proxy.conf \ ${WRKSRC}/src/zabbix_proxy/proxy.c + @${REINPLACE_CMD} -e 's#/tmp/zabbix_proxy.log#/var/log/zabbix/zabbix_proxy.log#g' \ + ${WRKSRC}/conf/zabbix_proxy.conf .endif .if ${ZABBIX_BUILD} == "agent" @${REINPLACE_CMD} -e 's#/tmp/zabbix_agentd.pid#/var/run/zabbix/zabbix_agentd.pid#g' \ ${WRKSRC}/conf/zabbix_agentd.conf \ ${WRKSRC}/src/zabbix_agent/zabbix_agentd.c + @${REINPLACE_CMD} -e 's#/tmp/zabbix_agentd.log#/var/log/zabbix/zabbix_agentd.log#g' \ + ${WRKSRC}/conf/zabbix_agentd.conf .endif .if ${ZABBIX_BUILD} == "java" |