diff options
author | Harald Hoyer <harald@redhat.com> | 2013-08-05 12:10:12 +0200 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2013-08-07 10:33:15 +0200 |
commit | af11946054193dbb13eec70cb62e6b0963c5fb41 (patch) | |
tree | 117a1007c98208a578bb104cf494829e2167d3c5 /modules.d/50plymouth | |
parent | 55a0b3abc7b8da4f3714cfcb5d34f7aa4e78e5bc (diff) | |
download | dracut-af11946054193dbb13eec70cb62e6b0963c5fb41.tar.gz dracut-af11946054193dbb13eec70cb62e6b0963c5fb41.tar.bz2 dracut-af11946054193dbb13eec70cb62e6b0963c5fb41.zip |
dracut-functions.sh: inst_multiple == dracut_install
Diffstat (limited to 'modules.d/50plymouth')
-rwxr-xr-x | modules.d/50plymouth/module-setup.sh | 2 | ||||
-rwxr-xr-x | modules.d/50plymouth/plymouth-populate-initrd.sh | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modules.d/50plymouth/module-setup.sh b/modules.d/50plymouth/module-setup.sh index ae35b113..e0e69367 100755 --- a/modules.d/50plymouth/module-setup.sh +++ b/modules.d/50plymouth/module-setup.sh @@ -22,7 +22,7 @@ install() { inst_hook emergency 50 "$moddir"/plymouth-emergency.sh - dracut_install readlink + inst_multiple readlink if ! dracut_module_included "systemd"; then inst_hook pre-trigger 10 "$moddir"/plymouth-pretrigger.sh diff --git a/modules.d/50plymouth/plymouth-populate-initrd.sh b/modules.d/50plymouth/plymouth-populate-initrd.sh index 6e0f5617..f8ef5190 100755 --- a/modules.d/50plymouth/plymouth-populate-initrd.sh +++ b/modules.d/50plymouth/plymouth-populate-initrd.sh @@ -4,7 +4,7 @@ PLYMOUTH_LOGO_FILE="/usr/share/pixmaps/system-logo-white.png" PLYMOUTH_THEME=$(plymouth-set-default-theme) -dracut_install plymouthd plymouth \ +inst_multiple plymouthd plymouth \ "${PLYMOUTH_LOGO_FILE}" \ /etc/system-release @@ -13,7 +13,7 @@ mkdir -m 0755 -p "${initdir}/usr/share/plymouth" inst_libdir_file "plymouth/text.so" "plymouth/details.so" if [[ $hostonly ]]; then - dracut_install \ + inst_multiple \ "/usr/share/plymouth/themes/details/details.plymouth" \ "/usr/share/plymouth/themes/text/text.plymouth" \ @@ -35,7 +35,7 @@ else [[ -f "$x" ]] || continue THEME_DIR=$(dirname "$x") mkdir -m 0755 -p "${initdir}/$THEME_DIR" - dracut_install "$x" + inst_multiple "$x" done ( cd ${initdir}/usr/share/plymouth/themes; |