c36abb7d55
- install SubDomain.pm compat module (bnc#713408) - Update to 2.6.1. - One patch eliminated - Lots of minor fixes - Split out more common abstractions - Add check_for_apparmor() helper. - dhcpd: Fix apparmor profile (bnc#692428) - Fixed typos in descriptions and summaries of apparmor.spec - move the requires and prerequires to the right package OBS-URL: https://build.opensuse.org/request/show/81356 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/apparmor?expand=0&rev=20
24 lines
539 B
Plaintext
24 lines
539 B
Plaintext
From: Jeff Mahoney <jeffm@suse.com>
|
|
Subject: apparmor-utils: Add check_for_apparmor helper.
|
|
|
|
This should be an alias but those get complicated quickly in perl.
|
|
|
|
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
|
|
---
|
|
utils/Immunix/AppArmor.pm | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
--- a/utils/Immunix/AppArmor.pm
|
|
+++ b/utils/Immunix/AppArmor.pm
|
|
@@ -463,6 +463,10 @@ sub check_for_subdomain () {
|
|
return $sd_mountpoint;
|
|
}
|
|
|
|
+sub check_for_apparmor () {
|
|
+ return check_for_subdomain();
|
|
+}
|
|
+
|
|
sub which ($) {
|
|
my $file = shift;
|
|
|