mirror of
https://git.freebsd.org/ports.git
synced 2025-05-02 11:36:40 -04:00
Make postgresql and lua default on, since the documentation for fluent-bit has no mention of them possibly ever being off. Fix start script to not use --daemon option redundantly when we already use the daemon(8) tool. PR: 281459, 269480 Release notes: https://github.com/fluent/fluent-bit/releases/tag/v3.1.10
43 lines
1.1 KiB
Bash
43 lines
1.1 KiB
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: fluent-bit
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
# Add the following lines to /etc/rc.conf to enable fluent-bit:
|
|
#
|
|
# fluent_bit_enable (bool): Set to YES to enable fluent-bit
|
|
# Default: NO
|
|
# fluent_bit_config (str): config files to use
|
|
# Default: %%ETCDIR%%/fluent-bit.conf
|
|
# fluent_bit_flags (str): Extra flags passed to fluent-bit
|
|
# fluent_bit_user (str): Default run as user nobody
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="fluent_bit"
|
|
rcvar=${name}_enable
|
|
load_rc_config $name
|
|
|
|
: ${fluent_bit_enable:="NO"}
|
|
: ${fluent_bit_user:="nobody"}
|
|
: ${fluent_bit_group:="nogroup"}
|
|
: ${fluent_bit_config:="%%ETCDIR%%/fluent-bit.conf"}
|
|
|
|
pidfile=/var/run/${name}.pid
|
|
procname="%%PREFIX%%/bin/fluent-bit"
|
|
command="/usr/sbin/daemon"
|
|
command_args="-H -p ${pidfile} -o /var/log/${name}/${name}.log ${procname} --quiet --config ${fluent_bit_config} ${fluent_bit_flags}"
|
|
|
|
start_precmd=fluent_bit_startprecmd
|
|
|
|
fluent_bit_startprecmd()
|
|
{
|
|
install -o ${fluent_bit_user} -g ${fluent_bit_group} -d /var/log/${name}
|
|
if [ ! -e ${pidfile} ]; then
|
|
install -o ${fluent_bit_user} -g ${fluent_bit_group} /dev/null ${pidfile};
|
|
fi
|
|
}
|
|
|
|
run_rc_command "$1"
|