mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-14 22:19:55 +00:00
This commit creates a new revision (-r4) that replaces the earlier unstable -r3. The ebuild itself includes an update to EAPI=6 and the associated simplifications, as well as the addition of a new user named "cancd" that is used by the init script. The service script was completely rewritten and simplified, and now uses more modern features of OpenRC. The original motivation for that was bug 603208. This is a non-maintainer commit, but robbat2 (the maintainer on file) recently made a post to gentoo-dev, "Packages up for grabs: robbat2 edition," stating that this package was up for grabs. Closes: https://bugs.gentoo.org/603208 Package-Manager: Portage-2.3.13, Repoman-2.3.3
14 lines
378 B
Text
14 lines
378 B
Text
#!/sbin/openrc-run
|
|
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# port to listen on
|
|
CANCD_PORT=6667
|
|
|
|
# directory to output to
|
|
CANCD_LOG_DIR=/var/log/cancd
|
|
|
|
# one file per minute, one dir per host/date
|
|
#CANCD_LOG_FORMAT="%Q/%Y-%m-%d/%H:%M.log"
|
|
# one file per day, one dir per host
|
|
CANCD_LOG_FORMAT="%Q/%Y-%m-%d.log"
|