Bug 196305
Summary: | [PATCH] Missing quoting in mkinitrd's emit_iscsi() | ||||||
---|---|---|---|---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Robert Scheck <redhat-bugzilla> | ||||
Component: | mkinitrd | Assignee: | Peter Jones <pjones> | ||||
Status: | CLOSED RAWHIDE | QA Contact: | David Lawrence <dkl> | ||||
Severity: | medium | Docs Contact: | |||||
Priority: | medium | ||||||
Version: | rawhide | Keywords: | EasyFix | ||||
Target Milestone: | --- | ||||||
Target Release: | --- | ||||||
Hardware: | All | ||||||
OS: | Linux | ||||||
Whiteboard: | |||||||
Fixed In Version: | 5.0.44-1 | Doc Type: | Bug Fix | ||||
Doc Text: | Story Points: | --- | |||||
Clone Of: | Environment: | ||||||
Last Closed: | 2006-06-23 12:52:19 UTC | Type: | --- | ||||
Regression: | --- | Mount Type: | --- | ||||
Documentation: | --- | CRM: | |||||
Verified Versions: | Category: | --- | |||||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
Cloudforms Team: | --- | Target Upstream Version: | |||||
Embargoed: | |||||||
Attachments: |
|
Description
Robert Scheck
2006-06-22 14:47:58 UTC
Created attachment 131362 [details]
Thanks to wwoods and Dyson pointing me to it :)
$ /sbin/new-kernel-pkg -v --package kernel --mkinitrd --depmod --install
2.6.17-1.2293_FC6
initrdfile is /boot/initrd-2.6.17-1.2293_FC6.img
running depmod for 2.6.17-1.2293_FC6
creating initrd /boot/initrd-2.6.17-1.img using 2.6.17-1.2293_FC6
cp: Aufruf von stat für »/sbin/iscsistart« nicht möglich: Datei oder
Verzeichnis nicht gefunden
found /boot/initrd-2.6.17-1.2293_FC6.img and using it with grubby
adding 2.6.17-1.2293_FC6 to /boot/grub/grub.conf
/etc/lilo.conf does not exist, not running grubby
$
As far as I can see, no iSCSI was detected, otherwise there would have been a
"Found iscsi component $1" output, right? In assumption of this, I went through
mkinitrd code. For debugging, I put a
if [ -n ${iscsi_devs} ]; then
echo "true";
echo "x${iscsi_devs}x";
fi
into emit_iscsi() which returned the following:
[...]
true
xx
[...]
Ahhhhhhh....please fix your faulty code soon! :-P
Thanks Jeremy and Karsten for fixing it in 5.0.44-1 - closing now. |