From c741725f38decb629301cf6c3a78e31492cdca4d Mon Sep 17 00:00:00 2001 From: Matthias Klumpp Date: Fri, 2 Jun 2017 21:00:46 +0200 Subject: [PATCH] Ensure we set the right plymouth theme when building the image --- config/hooks/normal/001-plymouth-theme.hook.chroot | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/config/hooks/normal/001-plymouth-theme.hook.chroot b/config/hooks/normal/001-plymouth-theme.hook.chroot index 7015d34..a317298 100755 --- a/config/hooks/normal/001-plymouth-theme.hook.chroot +++ b/config/hooks/normal/001-plymouth-theme.hook.chroot @@ -3,13 +3,10 @@ set -e if [ -e /usr/sbin/plymouth-set-default-theme ] then - if [ -e /usr/share/plymouth/themes/pureos-logo/pureos-logo.plymouth ] + if [ -e /usr/share/plymouth/themes/pureos/pureos.plymouth ] then # likely a GUI configuration, we want the nice PureOS splash - plymouth-set-default-theme pureos-logo - else - # likely a server/non-gui setup. We want to be verbose and show details. - plymouth-set-default-theme details + plymouth-set-default-theme pureos fi /usr/sbin/update-initramfs -u fi