runit-void-apparmor: skip XBPS conffile artifacts

This commit is contained in:
Cameron Nemo 2018-10-09 16:40:59 -07:00 committed by Enno Boland
parent 70a8263142
commit 13be9346ce
2 changed files with 4 additions and 1 deletions

View File

@ -19,6 +19,9 @@ if [ -n "$APPARMOR" ]; then
if [ -d /etc/apparmor.d -a -x /usr/bin/apparmor_parser ]; then
for profile in /etc/apparmor.d/*; do
case "$profile" in
*.new-*_*) continue ;;
esac
if [ -f "$profile" ]; then
printf '* Load profile %s: %s\n' "($APPARMOR)" "$profile"
apparmor_parser -a $AACOMPLAIN "$profile"

View File

@ -1,7 +1,7 @@
# Template file for 'runit-void'
pkgname=runit-void
version=20180623
revision=1
revision=2
wrksrc="void-runit-${version}"
build_style=gnu-makefile
homepage="https://github.com/void-linux/void-runit"