projects
/
platform
/
upstream
/
dracut.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5be225d
)
plymouth/plymouth-populate-initrd: get rid of awk
author
Harald Hoyer
<harald@redhat.com>
Fri, 7 May 2010 09:02:31 +0000
(11:02 +0200)
committer
Harald Hoyer
<harald@redhat.com>
Fri, 7 May 2010 09:02:31 +0000
(11:02 +0200)
modules.d/50plymouth/plymouth-populate-initrd
patch
|
blob
|
history
diff --git
a/modules.d/50plymouth/plymouth-populate-initrd
b/modules.d/50plymouth/plymouth-populate-initrd
index
b35a46f
..
effb0f9
100755
(executable)
--- a/
modules.d/50plymouth/plymouth-populate-initrd
+++ b/
modules.d/50plymouth/plymouth-populate-initrd
@@
-30,7
+30,7
@@
if [[ $hostonly ]]; then
if [ -L /usr/share/plymouth/themes/default.plymouth ]; then
inst /usr/share/plymouth/themes/default.plymouth
# Install plugin for this theme
- PLYMOUTH_PLUGIN=$(grep "^ModuleName=" /usr/share/plymouth/themes/default.plymouth |
awk -F= {'print $2'}
)
+ PLYMOUTH_PLUGIN=$(grep "^ModuleName=" /usr/share/plymouth/themes/default.plymouth |
while read a b c; do echo $b; done;
)
inst ${LIBDIR}/plymouth/${PLYMOUTH_PLUGIN}.so
fi
else