23 lines
572 B
Text
23 lines
572 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2022 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = /etc/cron.{hourly,daily,weekly,monthly}/cracklib-runtime
|
|
profile cron-cracklib @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
|
|
@{exec_path} r,
|
|
|
|
/{usr/,}bin/{,ba,da}sh rix,
|
|
/{usr/,}bin/logger rix,
|
|
/{usr/,}sbin/update-cracklib rPx,
|
|
|
|
/etc/cracklib/cracklib.conf r,
|
|
|
|
include if exists <local/cron-cracklib>
|
|
}
|