24 lines
684 B
Text
24 lines
684 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2018-2022 Mikhail Morfikov
|
|
# Copyright (C) 2022 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{chromium_name} = chromium
|
|
@{chromium_domain} = org.chromium.Chromium
|
|
@{chromium_lib_dirs} = @{lib}/@{chromium_name}
|
|
@{chromium_config_dirs} = @{user_config_dirs}/@{chromium_name}
|
|
@{chromium_cache_dirs} = @{user_cache_dirs}/@{chromium_name}
|
|
|
|
@{exec_path} = @{chromium_lib_dirs}/@{chromium_name}
|
|
profile chromium @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/chromium>
|
|
|
|
@{exec_path} mrix,
|
|
|
|
include if exists <local/chromium>
|
|
}
|