mkinitrd-dracut.sh: s/read_args/read_arg/g

https://bugzilla.redhat.com/show_bug.cgi?id=771106
master
Harald Hoyer 2012-01-05 10:51:00 +01:00
parent 70cb8a686f
commit e74167bd6a
1 changed files with 2 additions and 2 deletions

View File

@ -49,10 +49,10 @@ while (($# > 0)); do
exit 0;;
-v|--verbose) dracut_args="${dracut_args} -v";;
-f|--force) dracut_args="${dracut_args} -f";;
--preload) read_args modname "$@" || shift
--preload) read_arg modname "$@" || shift
basicmodules="$basicmodules $modname";;
--image-version) img_vers=yes;;
--rootfs) read_args rootfs "$@" || shift
--rootfs) read_arg rootfs "$@" || shift
dracut_args="${dracut_args} --filesystems $rootfs";;
--nocompress) dracut_args="$dracut_args --no-compress";;
--help) usage -n;;