From 30c977f2ff19f859059aa69c679fcd8f884de803 Mon Sep 17 00:00:00 2001 From: Martin Jackson Date: Fri, 12 Jan 2024 09:38:29 -0600 Subject: [PATCH] Fix docs per review --- mock/docs/site-defaults.cfg | 2 +- mock/py/mockbuild/shadow_utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mock/docs/site-defaults.cfg b/mock/docs/site-defaults.cfg index 0d05790aa..7bd478c4b 100644 --- a/mock/docs/site-defaults.cfg +++ b/mock/docs/site-defaults.cfg @@ -656,7 +656,7 @@ # Whether to use host's shadow-utils to provision users and groups in the # buildroot, which we normally want to do because host shadow-utils are -# newer and more flexible than buildroot ones.However, there is an issue in shadow-utils +# newer and more flexible than buildroot ones. However, there is an issue in shadow-utils # where even using the --prefix (or, even --root if we did it that way) option, the host # config will "leak" into the chroot. This is not an issue if the configs are # effectively the same between host and buildroot, but will cause problems if, for diff --git a/mock/py/mockbuild/shadow_utils.py b/mock/py/mockbuild/shadow_utils.py index 8a662689b..8447b2b6d 100644 --- a/mock/py/mockbuild/shadow_utils.py +++ b/mock/py/mockbuild/shadow_utils.py @@ -18,7 +18,7 @@ def _execute_command(self, command, can_fail=False): with self.root.uid_manager.elevated_privileges(): # Ordinarily we do not want to depend on shadow-utils in the bootstrap, but # configuring certain options (such as FreeIPA-provided subids) can make it - # impossible to create users in the bootstrap using host shadow-utils so we + # impossible to create users in the buildroot using host shadow-utils so we # provide this workaround. # Tracking upstream bug https://github.com/shadow-maint/shadow/issues/897 if self.root.config['use_host_shadow_utils']: