From 3c2e1453d9652bbe6a29d89edd80664b87ab7271 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Thu, 10 Sep 2009 09:54:44 -0400 Subject: [PATCH] [populate-initrd] Don't require set_verbose function If it's not around, define it, so we can use it without error --- scripts/plymouth-populate-initrd.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/plymouth-populate-initrd.in b/scripts/plymouth-populate-initrd.in index dd502b9f..dcf2b427 100755 --- a/scripts/plymouth-populate-initrd.in +++ b/scripts/plymouth-populate-initrd.in @@ -28,6 +28,10 @@ if [ " $(type -t inst) " != " function " ]; then exit 1 fi +if [ " $(type -t set_verbose) " != " function " ]; then + function set_verbose { true; } +fi + function usage() { local output="/dev/stdout" local rc=0 -- 2.47.3