mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-19 09:28:17 +01:00
61 lines
1.5 KiB
Text
61 lines
1.5 KiB
Text
# vim:syntax=apparmor
|
|
# ------------------------------------------------------------------
|
|
#
|
|
# Copyright (C) 2018-2021 Mikhail Morfikov
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of version 2 of the GNU General Public
|
|
# License published by the Free Software Foundation.
|
|
#
|
|
# ------------------------------------------------------------------
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
# Debugging the syslogger can be difficult if it can't write to the file
|
|
# that the kernel is logging denials to. In these cases, you can do the
|
|
# following:
|
|
# watch -n 1 'dmesg | tail -5'
|
|
|
|
@{exec_path} = /{usr/,}sbin/rsyslogd
|
|
profile rsyslogd @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/nameservice>
|
|
|
|
# Needed to remove the following error:
|
|
# rsyslogd[]: imklog: cannot open kernel log (/proc/kmsg): Operation not permitted.
|
|
capability syslog,
|
|
|
|
# For remote logs
|
|
capability net_admin,
|
|
|
|
# for creating new log files and changing their owner/group
|
|
capability chown,
|
|
|
|
# Needed?
|
|
deny capability sys_nice,
|
|
|
|
@{exec_path} mr,
|
|
|
|
/{usr/,}lib/@{multiarch}/rsyslog/*.so mr,
|
|
|
|
# rsyslog configuration
|
|
/etc/rsyslog.conf r,
|
|
/etc/rsyslog.d/{,**} r,
|
|
/var/spool/rsyslog/ r,
|
|
/var/spool/rsyslog/** rw,
|
|
|
|
owner @{run}/rsyslogd.pid{,.tmp} rwk,
|
|
owner @{run}/systemd/journal/syslog w,
|
|
|
|
# log files and devices
|
|
/var/log/** rw,
|
|
@{PROC}/kmsg r,
|
|
|
|
# a cert for gtls module
|
|
/etc/CA/*.crt r,
|
|
/etc/CA/*.key r,
|
|
|
|
include if exists <local/rsyslogd>
|
|
}
|