2006-01-04 16:29:11 +00:00
|
|
|
## <summary>ddcprobe retrieves monitor and graphics card information</summary>
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute ddcprobe in the ddcprobe domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2010-08-05 12:45:31 +00:00
|
|
|
## Domain allowed to transition.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-04 16:29:11 +00:00
|
|
|
## </param>
|
|
|
|
#
|
|
|
|
interface(`ddcprobe_domtrans',`
|
|
|
|
gen_require(`
|
|
|
|
type ddcprobe_t, ddcprobe_exec_t;
|
|
|
|
')
|
|
|
|
|
2008-07-23 21:38:39 +00:00
|
|
|
domtrans_pattern($1, ddcprobe_exec_t, ddcprobe_t)
|
2006-01-04 16:29:11 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
########################################
|
|
|
|
## <summary>
|
|
|
|
## Execute ddcprobe in the ddcprobe domain, and
|
|
|
|
## allow the specified role the ddcprobe domain.
|
|
|
|
## </summary>
|
|
|
|
## <param name="domain">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2010-08-05 12:45:31 +00:00
|
|
|
## Domain allowed to transition.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-04 16:29:11 +00:00
|
|
|
## </param>
|
|
|
|
## <param name="role">
|
2006-02-10 18:41:53 +00:00
|
|
|
## <summary>
|
2006-01-04 16:29:11 +00:00
|
|
|
## Role to be authenticated for ddcprobe domain.
|
2006-02-10 18:41:53 +00:00
|
|
|
## </summary>
|
2006-01-04 16:29:11 +00:00
|
|
|
## </param>
|
2006-09-06 22:07:25 +00:00
|
|
|
## <rolecap/>
|
2006-01-04 16:29:11 +00:00
|
|
|
#
|
|
|
|
interface(`ddcprobe_run',`
|
|
|
|
gen_require(`
|
|
|
|
type ddcprobe_t;
|
|
|
|
')
|
|
|
|
|
|
|
|
ddcprobe_domtrans($1)
|
|
|
|
role $2 types ddcprobe_t;
|
|
|
|
')
|