diff options
author | Michael Paquier <michael@paquier.xyz> | 2020-01-10 09:37:27 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2020-01-10 09:37:27 +0900 |
commit | 7b84ff33a14095b6252edbee686edf93ac9c8d1b (patch) | |
tree | 6c2515b80f941d93a7f49cc545cbd3c4f379b326 | |
parent | 4c6f541a0affb44b2f0e5e3d99f75636054c9d89 (diff) | |
download | postgresql-7b84ff33a14095b6252edbee686edf93ac9c8d1b.tar.gz postgresql-7b84ff33a14095b6252edbee686edf93ac9c8d1b.zip |
doc: Fix naming of SELinux
Reported-by: Tham Nguyen
Discussion: https://postgr.es/m/157851402876.29175.12977878383183540468@wrigleys.postgresql.org
Backpatch-through: 9.4
-rw-r--r-- | doc/src/sgml/ref/security_label.sgml | 2 | ||||
-rw-r--r-- | src/test/modules/dummy_seclabel/README | 18 |
2 files changed, 9 insertions, 11 deletions
diff --git a/doc/src/sgml/ref/security_label.sgml b/doc/src/sgml/ref/security_label.sgml index aa8be473bdf..997ca6cd1c7 100644 --- a/doc/src/sgml/ref/security_label.sgml +++ b/doc/src/sgml/ref/security_label.sgml @@ -78,7 +78,7 @@ SECURITY LABEL [ FOR <replaceable class="PARAMETER">provider</replaceable> ] ON label provider must interpret security labels; it merely provides a mechanism for storing them. In practice, this facility is intended to allow integration with label-based mandatory access control (MAC) systems such as - <productname>SE-Linux</>. Such systems make all access control decisions + <productname>SELinux</>. Such systems make all access control decisions based on object labels, rather than traditional discretionary access control (DAC) concepts such as users and groups. </para> diff --git a/src/test/modules/dummy_seclabel/README b/src/test/modules/dummy_seclabel/README index 75320aaeaca..a3fcbd75994 100644 --- a/src/test/modules/dummy_seclabel/README +++ b/src/test/modules/dummy_seclabel/README @@ -1,19 +1,17 @@ -The dummy_seclabel module exists only to support regression -testing of the SECURITY LABEL statement. It is not intended -to be used in production. +The dummy_seclabel module exists only to support regression testing of +the SECURITY LABEL statement. It is not intended to be used in production. Rationale ========= -The SECURITY LABEL statement allows the user to assign security -labels to database objects; however, security labels can only be assigned -when specifically allowed by a loadable module, so this module is provided -to allow proper regression testing. +The SECURITY LABEL statement allows the user to assign security labels to +database objects; however, security labels can only be assigned when +specifically allowed by a loadable module, so this module is provided to +allow proper regression testing. Security label providers intended to be used in production will typically be -dependent on a platform-specific feature such as -SE-Linux. This module is platform-independent, -and therefore better-suited to regression testing. +dependent on a platform-specific feature such as SELinux. This module is +platform-independent, and therefore better-suited to regression testing. Usage ===== |