aboutsummaryrefslogtreecommitdiff
blob: bff31dfd2a5dea4d14dcb1a6caff132a8aea9f25 (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
## <summary>Dbus system service which manages discovery and enrollment in realms and domains like Active Directory or IPA.</summary>

########################################
## <summary>
##	Execute realmd in the realmd domain.
## </summary>
## <param name="domain">
## <summary>
##	Domain allowed to transition.
## </summary>
## </param>
#
interface(`realmd_domtrans',`
	gen_require(`
		type realmd_t, realmd_exec_t;
	')

	corecmd_search_bin($1)
	domtrans_pattern($1, realmd_exec_t, realmd_t)
')

########################################
## <summary>
##	Send and receive messages from
##	realmd over dbus.
## </summary>
## <param name="domain">
##	<summary>
##	Domain allowed access.
##	</summary>
## </param>
#
interface(`realmd_dbus_chat',`
	gen_require(`
		type realmd_t;
		class dbus send_msg;
	')

	allow $1 realmd_t:dbus send_msg;
	allow realmd_t $1:dbus send_msg;
')