aboutsummaryrefslogtreecommitdiff
blob: 9868652f3e7db0bd0ee3df6bc48db33c2d07ac56 (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
## <summary>ddcprobe retrieves monitor and graphics card information</summary>

########################################
## <summary>
##	Execute ddcprobe in the ddcprobe domain.
## </summary>
## <param name="domain">
##	<summary>
##	Domain allowed to transition.
##	</summary>
## </param>
#
interface(`ddcprobe_domtrans',`
	gen_require(`
		type ddcprobe_t, ddcprobe_exec_t;
	')

	domtrans_pattern($1, ddcprobe_exec_t, ddcprobe_t)
')

########################################
## <summary>
##	Execute ddcprobe in the ddcprobe domain, and
##	allow the specified role the ddcprobe domain.
## </summary>
## <param name="domain">
##	<summary>
##	Domain allowed to transition.
##	</summary>
## </param>
## <param name="role">
##	<summary>
##	Role to be authenticated for ddcprobe domain.
##	</summary>
## </param>
## <rolecap/>
#
interface(`ddcprobe_run',`
	gen_require(`
		type ddcprobe_t;
	')

	ddcprobe_domtrans($1)
	role $2 types ddcprobe_t;
')