blob: 733e4e630b5ee8c1e9953242c377b26cf43ae0f8 (
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
|
## <summary>GNOME color manager</summary>
########################################
## <summary>
## Execute a domain transition to run colord.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`colord_domtrans',`
gen_require(`
type colord_t, colord_exec_t;
')
domtrans_pattern($1, colord_exec_t, colord_t)
')
########################################
## <summary>
## Send and receive messages from
## colord over dbus.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`colord_dbus_chat',`
gen_require(`
type colord_t;
class dbus send_msg;
')
allow $1 colord_t:dbus send_msg;
allow colord_t $1:dbus send_msg;
')
######################################
## <summary>
## Read colord lib files.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`colord_read_lib_files',`
gen_require(`
type colord_var_lib_t;
')
files_search_var_lib($1)
read_files_pattern($1, colord_var_lib_t, colord_var_lib_t)
')
|