mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-19 09:28:17 +01:00
43 lines
1.2 KiB
Text
43 lines
1.2 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>
|
|
|
|
@{CHROME_INSTALLDIR} = /opt/google/chrome{,-beta,-unstable}
|
|
@{CHROME_HOMEDIR} = @{HOME}/.config/google-chrome{,-beta,-unstable}
|
|
@{CHROME_CACHEDIR} = @{HOME}/.cache/google-chrome{,-beta,-unstable}
|
|
|
|
@{exec_path} = @{CHROME_INSTALLDIR}/google-chrome{,-beta,-unstable}
|
|
profile google-chrome-google-chrome @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
include <abstractions/deny-root-dir-access>
|
|
|
|
@{exec_path} r,
|
|
/{usr/,}bin/{,ba,da}sh rix,
|
|
|
|
/{usr/,}bin/readlink rix,
|
|
/{usr/,}bin/which rix,
|
|
/{usr/,}bin/dirname rix,
|
|
/{usr/,}bin/mkdir rix,
|
|
/{usr/,}bin/cat rix,
|
|
|
|
@{CHROME_INSTALLDIR}/chrome rPx,
|
|
|
|
owner @{PROC}/@{pid}/fd/* rw,
|
|
|
|
# file_inherit
|
|
owner @{HOME}/.xsession-errors w,
|
|
|
|
include if exists <local/google-chrome-google-chrome>
|
|
}
|