summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarald Hoyer <harald@redhat.com>2012-01-05 10:51:00 +0100
committerHarald Hoyer <harald@redhat.com>2012-01-05 10:51:00 +0100
commite74167bd6ae30cc2ea0ed2c4c4ac8011d5feadfa (patch)
tree1a1facd0840b90b2048823574f43e6652b50e8bd
parent70cb8a686f710b237c6f7c7524b47d2649f6751a (diff)
downloaddracut-e74167bd6ae30cc2ea0ed2c4c4ac8011d5feadfa.tar.gz
dracut-e74167bd6ae30cc2ea0ed2c4c4ac8011d5feadfa.tar.bz2
dracut-e74167bd6ae30cc2ea0ed2c4c4ac8011d5feadfa.zip
mkinitrd-dracut.sh: s/read_args/read_arg/g
https://bugzilla.redhat.com/show_bug.cgi?id=771106
-rw-r--r--mkinitrd-dracut.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/mkinitrd-dracut.sh b/mkinitrd-dracut.sh
index b635a534..02f1a7f0 100644
--- a/mkinitrd-dracut.sh
+++ b/mkinitrd-dracut.sh
@@ -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;;