initial commit
This commit is contained in:
parent
cbeef67c1c
commit
10abae75d9
|
@ -0,0 +1,33 @@
|
||||||
|
# Copyright (C) 2005 Tresys Technology, LLC
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
#
|
||||||
|
# netutils_transition(domain)
|
||||||
|
#
|
||||||
|
define(`netutils_transition',`
|
||||||
|
requires_block_template(`$0'_depend)
|
||||||
|
allow $1 netutils_exec_t:file { getattr read execute };
|
||||||
|
allow $1 netutils_t:process transition;
|
||||||
|
type_transition $1 netutils_exec_t:process netutils_t;
|
||||||
|
dontaudit $1 netutils_t:process { noatsecure siginh rlimitinh };
|
||||||
|
')
|
||||||
|
|
||||||
|
define(`netutils_transition_depend',`
|
||||||
|
type netutils_t, netutils_exec_t;
|
||||||
|
class file { getattr read execute };
|
||||||
|
class process { transition noatsecure siginh rlimitinh };
|
||||||
|
')
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
#
|
||||||
|
# netutils_execute(domain)
|
||||||
|
#
|
||||||
|
define(`netutils_execute',`
|
||||||
|
requires_block_template(`$0'_depend)
|
||||||
|
allow $1 netutils_exec_t:file { getattr read execute execute_no_trans };
|
||||||
|
')
|
||||||
|
|
||||||
|
define(`netutils_execute_depend',`
|
||||||
|
type netutils_exec_t;
|
||||||
|
class file { getattr read execute execute_no_trans };
|
||||||
|
')
|
Loading…
Reference in New Issue