From 4fe64e296fceeea5af0c47f73fb2e5e34e1cc769 Mon Sep 17 00:00:00 2001 From: Zen Date: Sat, 12 Oct 2024 21:04:50 -0500 Subject: [PATCH] log added plymouth theme Signed-off-by: Zen --- src/ugrd/base/plymouth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ugrd/base/plymouth.py b/src/ugrd/base/plymouth.py index a6bc5c09..4f1c7415 100644 --- a/src/ugrd/base/plymouth.py +++ b/src/ugrd/base/plymouth.py @@ -1,4 +1,4 @@ -__version__ = '0.1.0' +__version__ = '0.1.1' from zenlib.util import unset from configparser import ConfigParser @@ -47,7 +47,7 @@ def _process_plymouth_theme(self, theme): def pull_plymouth(self): """ Adds plymouth files to dependencies """ dir_list = [Path('/usr/lib64/plymouth'), Path('/usr/share/plymouth/themes/') / self["plymouth_theme"]] - self.logger.info("Adding plymouth files to dependencies.") + self.logger.info("[%s] Adding plymouth files to dependencies." % self["plymouth_theme"]) for directory in dir_list: for file in directory.rglob('*'): self['dependencies'] = file