Michael Thomas 4469892
## <summary>policy for crossfire</summary>
Michael Thomas 4469892
Michael Thomas 4469892
########################################
Michael Thomas 4469892
## <summary>
Michael Thomas 4469892
##	Execute a domain transition to run crossfire.
Michael Thomas 4469892
## </summary>
Michael Thomas 4469892
## <param name="domain">
Michael Thomas 4469892
## <summary>
Michael Thomas 4469892
##	Domain allowed to transition.
Michael Thomas 4469892
## </summary>
Michael Thomas 4469892
## </param>
Michael Thomas 4469892
#
Michael Thomas 4469892
interface(`crossfire_domtrans',`
Michael Thomas 4469892
	gen_require(`
Michael Thomas 4469892
		type crossfire_t, crossfire_exec_t;
Michael Thomas 4469892
	')
Michael Thomas 4469892
Michael Thomas 4469892
	domain_auto_trans($1,crossfire_exec_t,crossfire_t)
Michael Thomas 4469892
Michael Thomas 4469892
	allow $1 crossfire_t:fd use;
Michael Thomas 4469892
	allow crossfire_t $1:fd use;
Michael Thomas 4469892
	allow crossfire_t $1:fifo_file rw_file_perms;
Michael Thomas 4469892
	allow crossfire_t $1:process sigchld;
Michael Thomas 4469892
')