mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-18 08:58:15 +01:00
feat: add etckeeper profile.
This commit is contained in:
parent
711c7d917c
commit
e078fe2767
1 changed files with 72 additions and 0 deletions
72
apparmor.d/profiles-a-f/etckeeper
Normal file
72
apparmor.d/profiles-a-f/etckeeper
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
# 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} = /{usr/,}bin/etckeeper
|
||||||
|
profile etckeeper @{exec_path} {
|
||||||
|
include <abstractions/base>
|
||||||
|
include <abstractions/nameservice-strict>
|
||||||
|
|
||||||
|
capability dac_read_search,
|
||||||
|
capability dac_override,
|
||||||
|
|
||||||
|
@{exec_path} mrix,
|
||||||
|
|
||||||
|
/{usr/,}bin/{,ba,da}sh rix,
|
||||||
|
/{usr/,}bin/{,e}grep rix,
|
||||||
|
/{usr/,}bin/chmod rix,
|
||||||
|
/{usr/,}bin/cut rix,
|
||||||
|
/{usr/,}bin/find rix,
|
||||||
|
/{usr/,}bin/getent rix,
|
||||||
|
/{usr/,}bin/git* rix,
|
||||||
|
/{usr/,}lib/git-core/git* rix,
|
||||||
|
/{usr/,}bin/gpg rCx -> gpg,
|
||||||
|
/{usr/,}bin/hostname rix,
|
||||||
|
/{usr/,}bin/mktemp rix,
|
||||||
|
/{usr/,}bin/perl rix,
|
||||||
|
/{usr/,}bin/rm rix,
|
||||||
|
/{usr/,}bin/sed rix,
|
||||||
|
/{usr/,}bin/sort rix,
|
||||||
|
/{usr/,}bin/tty rix,
|
||||||
|
/{usr/,}bin/uniq rix,
|
||||||
|
/{usr/,}bin/whoami rix,
|
||||||
|
|
||||||
|
/etc/.git/hooks/* rix,
|
||||||
|
/etc/etckeeper/*.d/* rix,
|
||||||
|
/etc/etckeeper/daily rix,
|
||||||
|
|
||||||
|
/etc/ rw,
|
||||||
|
/etc/** rwkl -> /etc/**,
|
||||||
|
|
||||||
|
owner @{HOME}/.gitconfig* r,
|
||||||
|
owner @{HOME}/.netrc r,
|
||||||
|
owner @{user_config_dirs}/git/{,*} rw,
|
||||||
|
|
||||||
|
@{run}/resolvconf/resolv.conf r,
|
||||||
|
|
||||||
|
owner /tmp/etckeeper-git* rw,
|
||||||
|
|
||||||
|
profile gpg {
|
||||||
|
include <abstractions/base>
|
||||||
|
include <abstractions/consoles>
|
||||||
|
|
||||||
|
/{usr/,}bin/gpg mr,
|
||||||
|
/{usr/,}bin/gpg-agent rPx,
|
||||||
|
|
||||||
|
owner @{HOME}/@{XDG_GPG_DIR}/ rw,
|
||||||
|
owner @{HOME}/@{XDG_GPG_DIR}/** rwkl -> @{HOME}/@{XDG_GPG_DIR}/**,
|
||||||
|
|
||||||
|
owner @{PROC}/@{pid}/fd/ r,
|
||||||
|
owner @{user_config_dirs}/dotfiles/@{XDG_GPG_DIR}/** rwkl, # to remove, to depracate
|
||||||
|
|
||||||
|
# owner /tmp/.git_vtag_tmp* r,
|
||||||
|
|
||||||
|
# deny @{user_share_dirs}/gvfs-metadata/* r,
|
||||||
|
}
|
||||||
|
|
||||||
|
include if exists <local/etckeeper>
|
||||||
|
}
|
Loading…
Reference in a new issue