mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #224 from wzzrd/master
Small fix in documentation for seliux module
This commit is contained in:
commit
1f4cb79787
2 changed files with 7 additions and 7 deletions
|
@ -1732,7 +1732,7 @@ will let you know when it is required.</p>
|
|||
<tr class="row-even"><td>policy</td>
|
||||
<td>yes</td>
|
||||
<td> </td>
|
||||
<td>name of the SELinux policy to use (example: ‘targetted’)</td>
|
||||
<td>name of the SELinux policy to use (example: ‘targeted’)</td>
|
||||
</tr>
|
||||
<tr class="row-odd"><td>state</td>
|
||||
<td>yes</td>
|
||||
|
@ -1747,8 +1747,8 @@ will let you know when it is required.</p>
|
|||
</tbody>
|
||||
</table>
|
||||
<p>Example from Ansible <a class="reference internal" href="playbooks.html"><em>Playbooks</em></a>:</p>
|
||||
<div class="highlight-python"><pre>selinux policy=targetted state=enforcing
|
||||
selinux policy=targetted state=disabled</pre>
|
||||
<div class="highlight-python"><pre>selinux policy=targeted state=enforcing
|
||||
selinux policy=targeted state=disabled</pre>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section" id="setup">
|
||||
|
@ -2368,4 +2368,4 @@ yum name=httpd state=installed</pre>
|
|||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -11,7 +11,7 @@ will let you know when it is required.
|
|||
+--------------------+----------+---------------------+----------------------------------------------------------------------------+
|
||||
| parameter | required | default | comments |
|
||||
+====================+==========+=====================+============================================================================+
|
||||
| policy | yes | | name of the SELinux policy to use (example: 'targetted') |
|
||||
| policy | yes | | name of the SELinux policy to use (example: 'targeted') |
|
||||
+--------------------+----------+---------------------+----------------------------------------------------------------------------+
|
||||
| state | yes | | the SELinux mode. 'enforcing', 'permissive', or 'disabled' |
|
||||
+--------------------+----------+---------------------+----------------------------------------------------------------------------+
|
||||
|
@ -20,6 +20,6 @@ will let you know when it is required.
|
|||
|
||||
Example from Ansible :doc:`playbooks`::
|
||||
|
||||
selinux policy=targetted state=enforcing
|
||||
selinux policy=targetted state=disabled
|
||||
selinux policy=targeted state=enforcing
|
||||
selinux policy=targeted state=disabled
|
||||
|
||||
|
|
Loading…
Reference in a new issue