mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-05 00:41:03 +01:00
41 lines
829 B
PHP
41 lines
829 B
PHP
![]() |
if [ -e /sbin/subdomain_parser ] ; then
|
||
|
subdomain_parser=/sbin/subdomain_parser
|
||
|
else
|
||
|
subdomain_parser=/sbin/apparmor_parser
|
||
|
fi
|
||
|
|
||
|
if [ -n "`grep subdomainfs /proc/filesystems`" ]
|
||
|
then
|
||
|
subdomainfs=/subdomain
|
||
|
elif [ -n "`grep securityfs /proc/filesystems`" ]
|
||
|
then
|
||
|
if [ -e /sys/kernel/security/subdomain ] ; then
|
||
|
subdomainfs=/sys/kernel/security/subdomain
|
||
|
else
|
||
|
subdomainfs=/sys/kernel/security/apparmor
|
||
|
fi
|
||
|
else
|
||
|
echo "$0: Unable to find subdomainfs" >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
if [ ! -x $subdomain_parser ]
|
||
|
then
|
||
|
echo "$0: $subdomain_parser not executable" >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
if [ -z "`grep '^subdomain ' /proc/modules`" ]
|
||
|
then
|
||
|
if [ -z "`grep '^apparmor ' /proc/modules`" ] ; then
|
||
|
echo "$0: subdomain module not loaded" >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
if [ ! -w $subdomainfs/.load ]
|
||
|
then
|
||
|
echo "$0: $subdomainfs/.load not present" >&2
|
||
|
exit 1
|
||
|
fi
|