blob: 6209f73609140950aae30bf5ce14f9e2f73a3d92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
inherit bash-completion-r1 systemd
DESCRIPTION="Security and system auditing tool"
HOMEPAGE="https://cisofy.com/lynis/"
SRC_URI="https://cisofy.com/files/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+cron systemd"
DEPEND=""
RDEPEND="
app-shells/bash
!systemd? ( virtual/cron )"
S="${WORKDIR}/${PN}"
src_install() {
doman lynis.8
dodoc FAQ README
newdoc CHANGELOG.md CHANGELOG
# Remove the old one during the next stabilize progress
exeinto /etc/cron.daily
newexe "${FILESDIR}"/lynis.cron-new lynis
dobashcomp extras/bash_completion.d/lynis
# stricter default perms - bug 507436
diropts -m0700
insopts -m0600
insinto /usr/share/${PN}
doins -r db/ include/ plugins/
dosbin lynis
insinto /etc/${PN}
doins default.prf
sed -i -e 's/\/path\/to\///' "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
systemd_dounit "${S}/extras/systemd/${PN}.service" || die "Sed Failed!"
systemd_dounit "${S}/extras/systemd/${PN}.timer"
if ! use cron; then
ebegin "removing cron files from installation image"
rm -rfv "${ED}/etc/cron.daily" || die
eend "$?"
fi
}
pkg_postinst() {
if use cron; then
if systemd_is_booted || has_version sys-apps/systemd; then
echo
ewarn "Both 'cron' and 'systemd' flags are enabled."
ewarn "So both ${PN}.target and cron files were installed."
ewarn "Please don't use 2 implementations at the same time."
ewarn "Cronjobs are usually enabled by default via /etc/cron.* jobs"
ewarn "If you want to use systemd ${PN}.target timers"
ewarn "disable 'cron' flag and reinstall ${PN}"
echo
else
einfo "A cron script has been installed to ${ROOT}/etc/cron.daily/lynis."
fi
fi
}
|