From beb820a1c929c11b4ded24869d462ecf5b63fc2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20DESBRI=C3=88RES?= Date: Fri, 13 Jun 2014 18:50:39 +0200 Subject: lynis Security and system auditing tool to harden Unix/Linux systems --- pcr/lynis/PKGBUILD | 47 +++++++++++++++++++++++++++++++++++++++++++++++ pcr/lynis/lynis.install | 8 ++++++++ 2 files changed, 55 insertions(+) create mode 100644 pcr/lynis/PKGBUILD create mode 100644 pcr/lynis/lynis.install diff --git a/pcr/lynis/PKGBUILD b/pcr/lynis/PKGBUILD new file mode 100644 index 000000000..24be95c25 --- /dev/null +++ b/pcr/lynis/PKGBUILD @@ -0,0 +1,47 @@ +# Contributor (Arch) : Levente Polyak +# Contributor (Arch) : Sébastien Luttringer +# Maintainer (Parabola) : Aurélien DESBRIÈRES + +pkgname=lynis +pkgver=1.5.6 +pkgrel=1 +pkgdesc='Security and system auditing tool to harden Unix/Linux systems' +url='http://cisofy.com/lynis/' +license=('GPL3') +arch=('any') +backup=('etc/lynis/default.prf') +depends=('sh') +optdepends=('net-tools: networking tests') +install=lynis.install +source=(http://cisofy.com/files/${pkgname}-${pkgver}.tar.gz) + +prepare() { + cd ${pkgname}-${pkgver} + # fix non-test includes to let lynis run as user but complain gracefully + chmod o+rx include + chmod o+r include/* + chmod o-r include/tests_* +} + +package() { + cd ${pkgname}-${pkgver} + + # install profile + install -Dm 644 default.prf "${pkgdir}/etc/${pkgname}/default.prf" + + # install binary + install -Dm 755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}" + + # install plugins, include, db + install -d "${pkgdir}/usr/share/${pkgname}" + cp -a db include plugins "${pkgdir}/usr/share/${pkgname}" + + # install doc files + install -d "${pkgdir}/usr/share/doc/${pkgname}" + install -m 644 -t "${pkgdir}/usr/share/doc/${pkgname}" README INSTALL CHANGELOG FAQ + + # install manpage + install -Dm 644 "${pkgname}.8" "${pkgdir}/usr/share/man/man8/${pkgname}.8" +} + +# vim:set ts=2 sw=2 ft=sh et: diff --git a/pcr/lynis/lynis.install b/pcr/lynis/lynis.install new file mode 100644 index 000000000..abdb081f1 --- /dev/null +++ b/pcr/lynis/lynis.install @@ -0,0 +1,8 @@ +pre_upgrade() { + chmod -R o= /usr/share/lynis + chmod 0755 /usr/share/lynis + # fix non-test includes to let lynis run as user but complain gracefully + chmod o+rx /usr/share/lynis/include + chmod o+r /usr/share/lynis/include/* + chmod o-r /usr/share/lynis/include/tests_* +} -- cgit v1.2.3-2-g168b