From: Charlie Brej Date: Tue, 24 Feb 2009 09:27:53 +0000 (+0000) Subject: In plymouth-set-default-plugin on reset make sure we do not set label.so as a X-Git-Tag: 0.7.0~230 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=631b14c1b7b3b62f1ca520c0d024030f7c223538;p=thirdparty%2Fplymouth.git In plymouth-set-default-plugin on reset make sure we do not set label.so as a default splash plugin. --- 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