diff options
author | Will Woods <wwoods@redhat.com> | 2012-03-27 11:31:03 -0400 |
---|---|---|
committer | Will Woods <wwoods@redhat.com> | 2012-03-27 19:23:49 -0400 |
commit | 1969e3d0a68e5d9670ebbbb178f04f1923296e84 (patch) | |
tree | 1cd60681e0d8d941a026a364c418b9994b748621 /dracut | |
parent | 18cf04a0faad854149abe1555e23fb03f710ba1f (diff) | |
download | anaconda-1969e3d0a68e5d9670ebbbb178f04f1923296e84.tar.gz anaconda-1969e3d0a68e5d9670ebbbb178f04f1923296e84.tar.xz anaconda-1969e3d0a68e5d9670ebbbb178f04f1923296e84.zip |
fix "strsep: command not found" error with repo:hd:.. (#806966)
The function is actually called "splitsep", not "strsep".
Strong work, Will. Didn't you used to test things?
Diffstat (limited to 'dracut')
-rwxr-xr-x | dracut/repo-genrules.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dracut/repo-genrules.sh b/dracut/repo-genrules.sh index 97d253636..24ee9262c 100755 --- a/dracut/repo-genrules.sh +++ b/dracut/repo-genrules.sh @@ -5,7 +5,7 @@ case "$root" in anaconda-disk:*) # anaconda-disk:<device>[:<path>] - strsep ":" "$root" f diskdev diskpath + splitsep ":" "$root" f diskdev diskpath diskdev=$(disk_to_dev_path $diskdev) when_diskdev_appears "$diskdev" \ "/sbin/anaconda-diskroot $diskdev $diskpath" |