diff options
author | 2019-12-04 17:04:52 +0100 | |
---|---|---|
committer | 2019-12-08 12:32:03 +0100 | |
commit | effdb12f3d34ac5497d8d4ff109e7e9f35996c1f (patch) | |
tree | 66009c52bc6092cb9389762786224c824f6c70b7 /tasks-reference/pam/text.xml | |
parent | Fix <body> elements. (diff) | |
download | devmanual-effdb12f3d34ac5497d8d4ff109e7e9f35996c1f.tar.gz devmanual-effdb12f3d34ac5497d8d4ff109e7e9f35996c1f.tar.bz2 devmanual-effdb12f3d34ac5497d8d4ff109e7e9f35996c1f.zip |
Fix nesting of elements.
- Lists inside <p> are not allowed.
- <ul> is not a direct child of <ul>; it must be inside <li>.
- <p>, <note>, etc. are no children of <p>.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'tasks-reference/pam/text.xml')
-rw-r--r-- | tasks-reference/pam/text.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tasks-reference/pam/text.xml b/tasks-reference/pam/text.xml index ed35d28..6aa04d6 100644 --- a/tasks-reference/pam/text.xml +++ b/tasks-reference/pam/text.xml @@ -40,8 +40,7 @@ The statement is composed of 3 or 4 tokens: <li> The first token specifies the type of service for which the statement is done. There are four types: - </li> - <ul> + <ul> <li> <e>account</e>, which checks for validity of the user account. </li> @@ -57,12 +56,12 @@ The statement is composed of 3 or 4 tokens: mount/umount of home directories, executed both before starting and after closing the user session. </li> - </ul> + </ul> + </li> <li> The second token is the control that tells PAM how to behave with failures and success of the authentication for the module specified: - </li> - <ul> + <ul> <li> <e>requisite</e>, a failure results in the termination of the process. </li> @@ -79,7 +78,8 @@ The statement is composed of 3 or 4 tokens: not the only module present, in which case a success or a failure of it makes the authentication succeed or fail. </li> - </ul> + </ul> + </li> <li> The third token is the module to execute for that type of service; PAM modules are extensible and, as the name says, pluggable. The result is that there are |