#!/bin/bash

. ${TOOLKIT}-functions.sh

case $DISTRIB_ID in
  Ubuntu)
	# apparmor profile doesn't allows to create directories outside
	# of homedirs (instead, allows to user to save files with known
	# extensions everywhere .. sic)
	#
	echo -en "  apparmor: "
	aa-complain /usr/bin/evince
	;;
esac

exit 0
