27 lines
645 B
Text
27 lines
645 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}/etckeeper
|
|
profile cron-etckeeper @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
|
|
@{exec_path} r,
|
|
|
|
@{bin}/{,ba,da}sh rix,
|
|
@{bin}/rm rix,
|
|
@{bin}/find rix,
|
|
@{bin}/etckeeper rPx,
|
|
|
|
/etc/etckeeper/daily rix,
|
|
/etc/etckeeper/etckeeper.conf r,
|
|
|
|
/var/cache/etckeeper/packagelist.pre-install rw,
|
|
|
|
include if exists <local/cron-etckeeper>
|
|
}
|