initial commit

This commit is contained in:
Chris PeBenito 2005-05-25 19:52:21 +00:00
parent cbeef67c1c
commit 10abae75d9
1 changed files with 33 additions and 0 deletions

View File

@ -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 };
')