diff --git a/srcpkgs/runit-void/files/09-apparmor.sh b/srcpkgs/runit-void/files/09-apparmor.sh index f323f80136d..7d8d09ee80f 100644 --- a/srcpkgs/runit-void/files/09-apparmor.sh +++ b/srcpkgs/runit-void/files/09-apparmor.sh @@ -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" diff --git a/srcpkgs/runit-void/template b/srcpkgs/runit-void/template index 1af98b892a5..733a2768ab7 100644 --- a/srcpkgs/runit-void/template +++ b/srcpkgs/runit-void/template @@ -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"