apparmor.d/debian/apparmor.d.postrm

13 lines
255 B
Plaintext
Raw Permalink Normal View History

2021-04-04 00:22:09 +02:00
#!/bin/bash
2023-03-10 11:31:23 +01:00
# apparmor.d - Full set of apparmor profiles
# Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
2021-04-04 00:22:09 +02:00
# SPDX-License-Identifier: GPL-2.0-only
set -e
2021-04-04 00:22:09 +02:00
#DEBHELPER#
systemctl is-active -q apparmor && systemctl reload apparmor ||:
2021-09-19 21:39:13 +02:00
2021-04-04 00:22:09 +02:00
exit 0