21 lines
521 B
Plaintext
21 lines
521 B
Plaintext
|
From: Jeff Mahoney <jeffm@suse.com>
|
||
|
Subject: apparmor-utils: Add Immunix::SubDomain alias
|
||
|
|
||
|
This patch adds an alias so that 'use Immunix::SubDomain;' works with older
|
||
|
code.
|
||
|
|
||
|
Acked-by: Jeff Mahoney <jeffm@suse.com>
|
||
|
---
|
||
|
|
||
|
utils/Immunix/SubDomain.pm | 5 +++++
|
||
|
1 file changed, 5 insertions(+)
|
||
|
|
||
|
--- /dev/null
|
||
|
+++ b/utils/Immunix/SubDomain.pm
|
||
|
@@ -0,0 +1,5 @@
|
||
|
+# Use of Immunix::SubDomain is deprecated.
|
||
|
+# Use Immunix::AppArmor directly instead.
|
||
|
+use Immunix::AppArmor;
|
||
|
+*Immunix::SubDomain:: = *Immunix::AppArmor::;
|
||
|
+1;
|