36 lines
No EOL
738 B
Text
36 lines
No EOL
738 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} = @{bin}/locale-gen
|
|
profile locale-gen @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
|
|
capability dac_read_search,
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{bin}/{,ba}sh rix,
|
|
@{bin}/gzip rix,
|
|
@{bin}/localedef rix,
|
|
@{bin}/rm rix,
|
|
@{bin}/sed rix,
|
|
|
|
@{lib}/locale/locale-archive rwl,
|
|
@{lib}/locale/locale-archive* rw,
|
|
|
|
/usr/share/i18n/{,**} r,
|
|
|
|
/etc/locale.gen r,
|
|
|
|
# Inherit Silencer
|
|
deny network inet6 stream,
|
|
deny network inet stream,
|
|
|
|
include if exists <local/locale-gen>
|
|
} |