trunk: fix certwatch_run() interface, which had a typo in the name.
This commit is contained in:
parent
85bec1a669
commit
4922765ec6
|
@ -44,7 +44,7 @@ interface(`certwatch_domtrans',`
|
||||||
## </param>
|
## </param>
|
||||||
## <rolecap/>
|
## <rolecap/>
|
||||||
#
|
#
|
||||||
interface(`certwatach_run',`
|
interface(`certwatch_run',`
|
||||||
gen_require(`
|
gen_require(`
|
||||||
type certwatch_t;
|
type certwatch_t;
|
||||||
')
|
')
|
||||||
|
@ -53,3 +53,32 @@ interface(`certwatach_run',`
|
||||||
role $2 types certwatch_t;
|
role $2 types certwatch_t;
|
||||||
allow certwatch_t $3:chr_file rw_term_perms;
|
allow certwatch_t $3:chr_file rw_term_perms;
|
||||||
')
|
')
|
||||||
|
|
||||||
|
########################################
|
||||||
|
## <summary>
|
||||||
|
## Execute certwatch in the certwatch domain, and
|
||||||
|
## allow the specified role the certwatch domain,
|
||||||
|
## and use the caller's terminal. Has a sigchld
|
||||||
|
## backchannel. (Deprecated)
|
||||||
|
## </summary>
|
||||||
|
## <param name="domain">
|
||||||
|
## <summary>
|
||||||
|
## The type of the process performing this action.
|
||||||
|
## </summary>
|
||||||
|
## </param>
|
||||||
|
## <param name="role">
|
||||||
|
## <summary>
|
||||||
|
## The role to be allowed the certwatch domain.
|
||||||
|
## </summary>
|
||||||
|
## </param>
|
||||||
|
## <param name="terminal">
|
||||||
|
## <summary>
|
||||||
|
## The type of the terminal allow the certwatch domain to use.
|
||||||
|
## </summary>
|
||||||
|
## </param>
|
||||||
|
## <rolecap/>
|
||||||
|
#
|
||||||
|
interface(`certwatach_run',`
|
||||||
|
refpolicywarn(`$0($*) has been deprecated, please use certwatch_run() instead.')
|
||||||
|
certwatch_run($*)
|
||||||
|
')
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
policy_module(userdomain,2.3.0)
|
policy_module(userdomain,2.3.1)
|
||||||
|
|
||||||
gen_require(`
|
gen_require(`
|
||||||
role sysadm_r, staff_r, user_r;
|
role sysadm_r, staff_r, user_r;
|
||||||
|
@ -285,7 +285,7 @@ ifdef(`strict_policy',`
|
||||||
')
|
')
|
||||||
|
|
||||||
optional_policy(`
|
optional_policy(`
|
||||||
certwatach_run(sysadm_t,sysadm_r,admin_terminal)
|
certwatch_run(sysadm_t,sysadm_r,admin_terminal)
|
||||||
')
|
')
|
||||||
|
|
||||||
optional_policy(`
|
optional_policy(`
|
||||||
|
|
Loading…
Reference in New Issue