[Bug 269480] sysutils/fluent-bit: rc.d script should not use --daemon option when combined with daemon command
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 10 Feb 2023 23:45:21 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=269480 Bug ID: 269480 Summary: sysutils/fluent-bit: rc.d script should not use --daemon option when combined with daemon command Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: girgen@FreeBSD.org Reporter: hiroo.ono+freebsd@gmail.com Flags: maintainer-feedback?(girgen@FreeBSD.org) Assignee: girgen@FreeBSD.org Created attachment 240071 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=240071&action=edit patch to fluent-bit.in The option --daemon is passed to fluent-bit in the rc.d script. This makes the pid of fluent-bit not matching with the one written if /var/run/fluent-bit.pid. The file /var/run/fluent-bit.pid is written by daemon command, where the value is the pid of the child process which executes fluent-bit. If you pass --daemon option, fluent-bit itself forks and executes again and the pid becomes different from the pid written in the pid file. Try 'service fluent-bit start' and see the value of 'pgrep fluent-bit' and 'cat /var/run/fluent-bit.pid'. This makes 'service fluent-bit stop' and 'service fluent-bit status' not working. Also, the daemon command daemonize a program running foreground, so there is no need to set --daemon option to fluent-bit. -- You are receiving this mail because: You are the assignee for the bug.