mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-25 00:19:49 +02:00
When changing port numbers of baculas components one needs to adapt the pidfile naming in init.d scripts. Add a comment to emphasize this. Thanks chris@novazur.fr for pointing to the problem. Closes: https://bugs.gentoo.org/915613 Signed-off-by: Thomas Beierlein <tomjbe@gentoo.org>
13 lines
324 B
Text
13 lines
324 B
Text
#!/sbin/openrc-run
|
|
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
command=/usr/sbin/bacula-sd
|
|
command_args="${SD_OPTIONS}"
|
|
# make sure the following line matches the portnumber from bacula-sd.conf
|
|
pidfile=/var/run/bacula-sd.9103.pid
|
|
|
|
depend() {
|
|
need net
|
|
use dns
|
|
}
|