Search
j0ke.net Open Build Service
>
Projects
>
home:jg
:
playground
>
dracut
> 0129-plymouth-depend-on-crypt-if-cryptsetup-exists.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File 0129-plymouth-depend-on-crypt-if-cryptsetup-exists.patch of Package dracut
From e0c31e098ed1bab7bee245e0d5b0fb67055d955b Mon Sep 17 00:00:00 2001 From: Harald Hoyer <harald@redhat.com> Date: Fri, 9 Jul 2010 11:19:32 +0200 Subject: [PATCH] plymouth: depend on crypt, if cryptsetup exists --- modules.d/50plymouth/check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules.d/50plymouth/check b/modules.d/50plymouth/check index 838e7e2..ceb26a7 100755 --- a/modules.d/50plymouth/check +++ b/modules.d/50plymouth/check @@ -1,3 +1,3 @@ #!/bin/bash -[[ $1 = -d ]] && echo crypt +[[ $1 = -d ]] && which cryptsetup &>/dev/null && echo crypt [[ -x /sbin/plymouthd && -x /bin/plymouth && -x /usr/sbin/plymouth-set-default-theme ]] -- 1.8.3.1