1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 15:02:07 +02:00
tldr/pages/linux/semanage.md
marchersimon dac4a71077
multiple pages: replace all die.net links (#5528)
Most of the links were replaced by manned.org,
except when there are more up-to-date sources (like `ifup`)
or first-party sources (like `sftp`).
2021-04-16 15:42:14 +01:00

24 lines
797 B
Markdown

# semanage
> SELinux Policy Management tool.
> More information: <https://manned.org/semanage>.
- Output local customizations:
`semanage -S {{store}} -o {{path/to/output_file}}`
- Take a set of commands from a specified file and load them in a single transaction:
`semanage -S {{store}} -i {{path/to/input_file}}`
- Manage booleans. Booleans allow the administrator to modify the confinement of processes based on the current configuration:
`semanage boolean -S {{store}} {{--delete|--modify|--list|--noheading|--deleteall}} {{-on|-off}} -F {{boolean|boolean_file}}`
- Manage policy modules:
`semanage module -S {{store}} {{--add|--delete|--list|--modify}} {{--enable|--disable}} {{module_name}}`
- Disable/Enable dontaudit rules in policy:
`semanage dontaudit -S {{store}} {{on|off}}`