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 /dracut.sh | |
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 'dracut.sh')
-rwxr-xr-x | dracut.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1107,7 +1107,7 @@ if [[ $no_kernel != yes ]]; then fi if [[ $kernel_only != yes ]]; then - (( ${#install_items[@]} > 0 )) && dracut_install ${install_items[@]} + (( ${#install_items[@]} > 0 )) && inst_multiple ${install_items[@]} [[ $kernel_cmdline ]] && printf "%s\n" "$kernel_cmdline" >> "${initdir}/etc/cmdline.d/01-default.conf" @@ -1182,10 +1182,10 @@ PRELINK_BIN="$(command -v prelink)" if [[ $UID = 0 ]] && [[ $PRELINK_BIN ]]; then if [[ $DRACUT_FIPS_MODE ]]; then dinfo "*** Installing prelink files ***" - dracut_install -o prelink /etc/prelink.conf /etc/prelink.conf.d/*.conf /etc/prelink.cache + inst_multiple -o prelink /etc/prelink.conf /etc/prelink.conf.d/*.conf /etc/prelink.cache else dinfo "*** Pre-linking files ***" - dracut_install -o prelink /etc/prelink.conf /etc/prelink.conf.d/*.conf + inst_multiple -o prelink /etc/prelink.conf /etc/prelink.conf.d/*.conf chroot "$initdir" "$PRELINK_BIN" -a rm -f -- "$initdir/$PRELINK_BIN" rm -fr -- "$initdir"/etc/prelink.* |