# apparmor.d - Full set of apparmor profiles
# Copyright (C) 2019-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}/mlocate
@{att} = ""
profile cron-mlocate /etc/cron.{hourly,daily,weekly,monthly}/mlocate flags=(complain) {
  include <abstractions/base-strict>
  include <abstractions/consoles>

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

  @{bin}/which{,.debianutils}  rix,
  @{bin}/true       rix,
  @{bin}/flock      rix,
  @{bin}/nocache    rix,
  @{bin}/ionice     rix,
  @{bin}/nice       rix,

  @{bin}/updatedb.mlocate rpx,
  @{sbin}/on_ac_power     rpx,

  @{run}/mlocate.daily.lock rwk,

  include if exists <local/cron-mlocate>
}

# vim:syntax=apparmor
