blob: 58e5c44230731f4b5ca34f93a3eb87d5d1b4ccb6 (
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
|
## <summary>GNUstep distributed object mapper.</summary>
########################################
## <summary>
## Read gdomap configuration files.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`gdomap_read_config',`
gen_require(`
type gdomap_conf_t;
')
files_search_etc($1)
allow $1 gdomap_conf_t:file read_file_perms;
')
########################################
## <summary>
## All of the rules required to
## administrate an gdomap environment.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
## <param name="role">
## <summary>
## Role allowed access.
## </summary>
## </param>
## <rolecap/>
#
interface(`gdomap_admin',`
gen_require(`
type gdomap_t, gdomap_conf_t, gdomap_initrc_exec_t;
type gdomap_var_run_t;
')
allow $1 gdomap_t:process { ptrace signal_perms };
ps_process_pattern($1, gdomap_t)
init_startstop_service($1, $2, gdomap_t, gdomap_initrc_exec_t)
files_search_etc($1)
admin_pattern($1, gdomap_conf_t)
files_search_pids($1)
admin_pattern($1, gdomap_var_run_t)
')
|