mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-06 17:31:01 +01:00
18 lines
258 B
PHP
Executable file
18 lines
258 B
PHP
Executable file
if [ -n "$do_onexit" ]
|
|
then
|
|
$do_onexit
|
|
fi
|
|
|
|
if [ -n "$subdomain" -a -f "$profile" -a ${profileloaded:-0} -eq 1 ]
|
|
then
|
|
removeprofile
|
|
fi
|
|
|
|
if [ "$retaintmpdir" = "true" ]
|
|
then
|
|
echo "Files retained in: $tmpdir"
|
|
else
|
|
rm -rf $tmpdir
|
|
fi
|
|
|
|
exit $num_testfailures
|