X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx12.valuehost.ru (mx12.valuehost.ru [217.112.42.215]) by lists.alpinelinux.org (Postfix) with ESMTP id 9F27CF854C3 for ; Tue, 25 Dec 2018 06:11:03 +0000 (UTC) Received: from mx7.valuehost.ru (unknown [127.0.0.255]) by mx12.valuehost.ru (Postfix) with ESMTP id EFE68592E8 for ; Tue, 25 Dec 2018 09:10:59 +0300 (MSK) From: alpine-mips-patches Date: Tue, 25 Dec 2018 05:53:48 +0000 Subject: [alpine-aports] [PATCH] community/fwsnort: run tests in fakeroot To: alpine-aports@lists.alpinelinux.org Message-Id: <20181225061059.EFE68592E8@mx12.valuehost.ru> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: check() fails otherwise with the following output: [+] fwsnort has been successfully installed! [*] ./test-fwsnort.pl: You must be root (or equivalent UID 0 account) to effectively test fwsnort at ./test-fwsnort.pl line 822. >>> ERROR: fwsnort: check failed --- community/fwsnort/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/community/fwsnort/APKBUILD b/community/fwsnort/APKBUILD index a26fe72b70..87e49d48e0 100644 --- a/community/fwsnort/APKBUILD +++ b/community/fwsnort/APKBUILD @@ -2,13 +2,14 @@ # Maintainer: Stuart Cardall pkgname=fwsnort pkgver=1.6.8 -pkgrel=0 +pkgrel=1 pkgdesc="Application layer IDS/IPS by translating snort rules into iptables" url="http://www.cipherdyne.org/fwsnort/" arch="noarch" license="GPL" depends="perl perl-netaddr-ip perl-iptables-parse iptables ip6tables net-tools wget" install="$pkgname.post-install" +options="checkroot" source="http://www.cipherdyne.org/$pkgname/download/$pkgname-nodeps-$pkgver.tar.gz fwsnort.up fwsnort.update -- 2.20.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---