2005-06-07 22:36:07 +00:00
|
|
|
## <module name="locallogin" layer="system">
|
|
|
|
## <summary>Policy for local logins.</summary>
|
2005-04-28 19:50:58 +00:00
|
|
|
|
2005-06-07 22:36:07 +00:00
|
|
|
########################################
|
|
|
|
## <interface name="locallogin_transition">
|
|
|
|
## <description>
|
|
|
|
## Execute local logins in the locallogin domain.
|
|
|
|
## </description>
|
|
|
|
## <parameter name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </parameter>
|
|
|
|
## </interface>
|
2005-04-28 19:50:58 +00:00
|
|
|
#
|
|
|
|
define(`locallogin_transition',`
|
2005-06-03 12:25:14 +00:00
|
|
|
requires_block_template(`$0'_depend)
|
|
|
|
|
|
|
|
authlogin_login_program_transition($1,local_login_t)
|
2005-04-28 19:50:58 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
define(`locallogin_transition_depend',`
|
2005-06-03 12:25:14 +00:00
|
|
|
type local_login_t;
|
2005-04-28 19:50:58 +00:00
|
|
|
')
|
2005-05-03 20:23:33 +00:00
|
|
|
|
2005-06-07 22:36:07 +00:00
|
|
|
########################################
|
|
|
|
## <interface name="locallogin_use_file_descriptors">
|
|
|
|
## <description>
|
|
|
|
## Allow processes to inherit local login file descriptors
|
|
|
|
## </description>
|
|
|
|
## <parameter name="domain">
|
|
|
|
## The type of the process performing this action.
|
|
|
|
## </parameter>
|
|
|
|
## </interface>
|
|
|
|
#
|
2005-05-03 20:23:33 +00:00
|
|
|
########################################
|
|
|
|
#
|
2005-05-04 13:19:47 +00:00
|
|
|
# locallogin_use_file_descriptors(domain)
|
2005-05-03 20:23:33 +00:00
|
|
|
#
|
|
|
|
define(`locallogin_use_file_descriptors',`
|
2005-06-03 12:25:14 +00:00
|
|
|
requires_block_template(`$0'_depend)
|
|
|
|
|
|
|
|
allow $1 local_login_t:fd use;
|
2005-05-03 20:23:33 +00:00
|
|
|
')
|
|
|
|
|
|
|
|
define(`locallogin_use_file_descriptors_depend',`
|
2005-06-03 12:25:14 +00:00
|
|
|
type local_login_t;
|
|
|
|
|
|
|
|
class fd use;
|
2005-05-03 20:23:33 +00:00
|
|
|
')
|
2005-06-07 22:36:07 +00:00
|
|
|
|
|
|
|
## </module>
|