Date: Thu, 14 Sep 2017 11:17:53 +0000 (UTC) From: Eugene Grosbein <eugen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449830 - in head/databases/influxdb: . files Message-ID: <201709141117.v8EBHr82067694@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: eugen Date: Thu Sep 14 11:17:52 2017 New Revision: 449830 URL: https://svnweb.freebsd.org/changeset/ports/449830 Log: Redirect all output to syslog by means of daemon(8) having syslog support in recent FreeBSD versions and by means of piping it to logger(1) for previous FreeBSD versions: add influxd_facility and influxd_priority variables (defaults to daemon.info). Bump PORTREVISION. PR: 221960 Submitted by: Sascha Holzleiter Approved by: cheffo (maintainer) Modified: head/databases/influxdb/Makefile head/databases/influxdb/files/influxd.in Modified: head/databases/influxdb/Makefile ============================================================================== --- head/databases/influxdb/Makefile Thu Sep 14 10:56:00 2017 (r449829) +++ head/databases/influxdb/Makefile Thu Sep 14 11:17:52 2017 (r449830) @@ -3,6 +3,7 @@ PORTNAME= influxdb PORTVERSION= 1.3.3 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= databases net-mgmt MAINTAINER= cheffo@freebsd-bg.org @@ -72,6 +73,15 @@ INFLUXD_DBDIR= /var/db/${PORTNAME}/ INFLUXD_LOGDIR= /var/log/${PORTNAME}/ INFLUXD_PIDDIR= /var/run/${PORTNAME}/ +.include <bsd.port.pre.mk> + +.if ${OPSYS} == "FreeBSD" && ((${OSVERSION} >= 1100513 && ${OSVERSION} < 1200000) || \ + ${OSVERSION} >= 1200015) +SUB_LIST+= INFLUXD_LOGCMD="daemon" +.else +SUB_LIST+= INFLUXD_LOGCMD="logger" +.endif + post-patch: @${MKDIR} ${WRKSRC}/src/github.com/${GH_ACCOUNT_DEFAULT}/${PORTNAME} @cd ${WRKSRC} && \ @@ -115,4 +125,4 @@ do-install-MANPAGES-on: ${INSTALL_MAN} ${WRKSRC}/src/github.com/influxdata/influxdb/man/$i ${STAGEDIR}${MAN8PREFIX}/man/man1 .endfor -.include <bsd.port.mk> +.include <bsd.port.post.mk> Modified: head/databases/influxdb/files/influxd.in ============================================================================== --- head/databases/influxdb/files/influxd.in Thu Sep 14 10:56:00 2017 (r449829) +++ head/databases/influxdb/files/influxd.in Thu Sep 14 11:17:52 2017 (r449830) @@ -18,6 +18,11 @@ # influxd_group (str): influxd daemon group # Default: influxd # influxd_flags (str): Extra flags passed to influxd +# +# influxd_facility (str): Syslog facility to use +# Default: daemon +# influxd_priority (str): Syslog priority to use +# Default: info . /etc/rc.subr @@ -29,19 +34,35 @@ load_rc_config $name : ${influxd_user:="%%INFLUXD_USER%%"} : ${influxd_group:="%%INFLUXD_GROUP%%"} : ${influxd_flags:=""} +: ${influxd_facility:="daemon"} +: ${influxd_priority:="info"} : ${influxd_conf:="%%PREFIX%%/etc/${name}.conf"} -: ${influxd_options:="${influxdb_flags} -config=${influxd_conf} 2> %%INFLUXD_LOGDIR%%/influxdb.log"} +: ${influxd_options:="${influxdb_flags} -config=${influxd_conf}"} # daemon influxd_pidfile="%%INFLUXD_PIDDIR%%${name}.pid" procname="%%PREFIX%%/bin/${name}" command=/usr/sbin/daemon -command_args="-c -p ${influxd_pidfile} ${procname} ${influxd_options}" start_precmd="influxd_precmd" +start_cmd="influxd_startcmd_%%INFLUXD_LOGCMD%%" influxd_precmd() { install -d -o ${influxd_user} %%INFLUXD_PIDDIR%% } + +influxd_startcmd_daemon() +{ + echo "Starting ${name}." + /usr/sbin/daemon -c -p ${influxd_pidfile} -S -s ${influxd_priority} -l ${influxd_facility} \ + -u ${influxd_user} ${procname} ${influxd_options} +} + +influxd_startcmd_logger() +{ + echo "Starting ${name}." + /usr/sbin/daemon -c -p ${influxd_pidfile} -u ${influxd_user} /bin/sh -c "${procname} ${influxd_options} 2>&1 \ + | /usr/bin/logger -t ${name} -p ${influxd_facility}.${influxd_priority}" +} run_rc_command "$1"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709141117.v8EBHr82067694>