# apparmor.d - Full set of apparmor profiles
# Copyright (C) 2020-2021 Mikhail Morfikov
# Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
# SPDX-License-Identifier: GPL-2.0-only

abi <abi/4.0>,

include <tunables/global>

@{exec_path} = /etc/cron.{hourly,daily,weekly,monthly}/apt-compat
@{att} = ""
profile cron-apt-compat /etc/cron.{hourly,daily,weekly,monthly}/apt-compat flags=(complain) {
  include <abstractions/base-strict>

  @{exec_path} r,
  @{sh_path}                   rix,

  @{sbin}/on_ac_power          rpx,

  @{bin}/apt-config            rpx,
  @{lib}/apt/apt.systemd.daily rpx,

  @{bin}/dd                    rix,
  @{bin}/cksum                 rix,
  @{bin}/cut                   rix,
  @{bin}/which{,.debianutils}  rix,
  @{bin}/sleep                 rix,

  include if exists <local/cron-apt-compat>
}

# vim:syntax=apparmor
