From 631b14c1b7b3b62f1ca520c0d024030f7c223538 Mon Sep 17 00:00:00 2001 From: Charlie Brej Date: Tue, 24 Feb 2009 09:27:53 +0000 Subject: [PATCH] In plymouth-set-default-plugin on reset make sure we do not set label.so as a default splash plugin. --- scripts/plymouth-set-default-plugin.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/plymouth-set-default-plugin.in b/scripts/plymouth-set-default-plugin.in index 2d4728ab..68d5b7f7 100755 --- a/scripts/plymouth-set-default-plugin.in +++ b/scripts/plymouth-set-default-plugin.in @@ -125,7 +125,7 @@ if [ `id -u` -ne 0 ]; then fi if [ $DO_RESET -ne 0 ]; then - PLUGIN_NAME=$(basename $(ls -1 -t ${LIBDIR}/plymouth/*.so 2> /dev/null | grep -v default.so | tail -n 1) .so) + PLUGIN_NAME=$(basename $(ls -1 -t ${LIBDIR}/plymouth/*.so 2> /dev/null | grep -v default.so | grep -v label.so | tail -n 1) .so) if [ $PLUGIN_NAME = .so ]; then rm -f ${LIBDIR}/plymouth/default.so exit 0 -- 2.47.3