From: Richard Purdie Date: Wed, 5 May 2021 21:13:10 +0000 (+0100) Subject: lib/package_manager: Use shutil.copy instead of bb.utils.copyfile for intercepts X-Git-Tag: 2021-04.1-hardknott~19 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=f2c5f666140df29d97e2b1539e727d3609e9e4d2;p=openembedded-core.git lib/package_manager: Use shutil.copy instead of bb.utils.copyfile for intercepts If the scripts/postinst-intercepts is owned by root/root then the copyfile() calls will fail due to chown issues. We don't care about ownership of these files so use shutil.copy() instead which won't perform any chown. Signed-off-by: Richard Purdie (cherry picked from commit 1a03c70c282b3445b93a4c70ea6d40a1778750c5) Signed-off-by: Anuj Mittal --- diff --git a/meta/lib/oe/package_manager/__init__.py b/meta/lib/oe/package_manager/__init__.py index 8e7128b195..4d22bc0296 100644 --- a/meta/lib/oe/package_manager/__init__.py +++ b/meta/lib/oe/package_manager/__init__.py @@ -189,7 +189,7 @@ class PackageManager(object, metaclass=ABCMeta): bb.utils.remove(self.intercepts_dir, True) bb.utils.mkdirhier(self.intercepts_dir) for intercept in postinst_intercepts: - bb.utils.copyfile(intercept, os.path.join(self.intercepts_dir, os.path.basename(intercept))) + shutil.copy(intercept, os.path.join(self.intercepts_dir, os.path.basename(intercept))) @abstractmethod def _handle_intercept_failure(self, failed_script):