blob: 5226b3ab8f760bb543c8c4dd6da7ce6a3b6491a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
policy_module(miscfiles)
########################################
#
# Declarations
#
attribute cert_type;
attribute tls_privkey_type;
#
# cert_t is the type of files in the system certs directories.
#
type cert_t;
miscfiles_cert_type(cert_t)
#
# fonts_t is the type of various font
# files in /usr
#
type fonts_t;
files_type(fonts_t)
type fonts_cache_t;
files_type(fonts_cache_t)
#
# type for /usr/share/hwdata
#
type hwdata_t;
files_type(hwdata_t)
#
# locale_t is the type for system localization
#
type locale_t;
files_type(locale_t)
optional_policy(`
container_mountpoint(locale_t)
')
#
# man_t is the type for the man directories.
#
type man_t alias catman_t;
files_type(man_t)
optional_policy(`
systemd_tmpfilesd_managed(man_t)
')
type man_cache_t;
files_type(man_cache_t)
#
# Types for public content
#
type public_content_t; #, customizable;
files_type(public_content_t)
type public_content_rw_t; #, customizable;
files_type(public_content_rw_t)
#
# Base type for the tests directory.
#
type test_file_t;
files_type(test_file_t)
#
# for /var/{spool,lib}/texmf index files
#
type tetex_data_t;
files_tmp_file(tetex_data_t)
#
# tls_privkey_t is the type of files for the SSL/TLS private keys.
#
type tls_privkey_t;
miscfiles_tls_privkey_type(tls_privkey_t)
|