~apparmor-dev/apparmor/apparmor-ubuntu-citrain-trusty

1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e

if [ "$1" = "purge" ]; then
    APP_PROFILE="usr.sbin.apache2"
    rm -f /etc/apparmor.d/disable/$APP_PROFILE >/dev/null 2>&1 || true
fi

#DEBHELPER#