9127219358
There is more than 5000 parameter documentations. Only about 300 are differently done. Change them to be consistently indented. param with one space and content inside with one tab This was done with: sed -ri ' /^##[[:space:]]*<param/,/^##[[:space:]]*<[/]param>/{ s/^##[[:space:]]*/##\t/; s/^##[[:space:]]*(<[/]?summary)/##\t\1/; s/^##[[:space:]]*(<[/]?param)/## \1/; }' policy/modules/*/*.if Signed-off-by: Markus Linnala <Markus.Linnala@cybercom.com>
42 lines
875 B
Plaintext
42 lines
875 B
Plaintext
## <summary>Dbus system service which manages discovery and enrollment in realms and domains like Active Directory or IPA.</summary>
|
|
|
|
########################################
|
|
## <summary>
|
|
## Execute realmd in the realmd domain.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed to transition.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`realmd_domtrans',`
|
|
gen_require(`
|
|
type realmd_t, realmd_exec_t;
|
|
')
|
|
|
|
corecmd_search_bin($1)
|
|
domtrans_pattern($1, realmd_exec_t, realmd_t)
|
|
')
|
|
|
|
########################################
|
|
## <summary>
|
|
## Send and receive messages from
|
|
## realmd over dbus.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed access.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`realmd_dbus_chat',`
|
|
gen_require(`
|
|
type realmd_t;
|
|
class dbus send_msg;
|
|
')
|
|
|
|
allow $1 realmd_t:dbus send_msg;
|
|
allow realmd_t $1:dbus send_msg;
|
|
')
|