42 lines
864 B
Plaintext
42 lines
864 B
Plaintext
## <summary>Filesystem automounter service.</summary>
|
|
|
|
########################################
|
|
## <summary>
|
|
## Execute automount in the automount domain.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## Domain allowed access.
|
|
## </param>
|
|
#
|
|
interface(`automount_domtrans',`
|
|
gen_require(`
|
|
type automount_t, automount_exec_t;
|
|
')
|
|
|
|
corecmd_search_sbin($1)
|
|
domain_auto_trans($1, automount_exec_t, automount_t)
|
|
|
|
allow $1 automount_t:fd use;
|
|
allow automount_t $1:fd use;
|
|
allow automount_t $1:fifo_file rw_file_perms;
|
|
allow automount_t $1:process sigchld;
|
|
|
|
')
|
|
|
|
########################################
|
|
## <summary>
|
|
## Execute automount in the caller domain.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## Domain allowed access.
|
|
## </param>
|
|
#
|
|
interface(`automount_exec',`
|
|
gen_require(`
|
|
type automount_exec_t;
|
|
')
|
|
|
|
corecmd_search_sbin($1)
|
|
can_exec($1,automount_etc_t)
|
|
')
|