search for: drive_var

Displaying 4 results from an estimated 4 matches for "drive_var".

Did you mean: drive_v
2009 Oct 01
1
Repost of Patch 6/6 for ovirt-node
All other patches from the sequence remain unchanged. Repost of patch 6 based on comments from Joey to follow. Mike
2009 Jul 10
0
[PATCH node] This is a follow-on patch for bz#507455.
...device"; return 1;; - 1) echo "$devices"; return 0;; - *) ;; # found more than one + if [ -n "$devices" ]; then + eval $list_var='"$devices"' + fi + + debug "get_drive_list: end" +} + +select_a_drive () +{ + local DRIVE_VAR=$1 + local choices + + get_drive_list choices + case $(echo "$choices" | wc -w) in + 0) die "ERROR: there are no usable block devices" ;; + 1) echo "$choices"; return 0;; + *) ;; # continue to selection esac - # There are two or...
2009 Jul 01
1
Replacement patch for bz#507455
This patch includes a fix to no longer list devices with 0 bytes of storage, such as removeable media devices with no media present.
2009 Sep 26
10
Adding handling for Multipath storage devices
The following patches introduce support for multipath and cciss devices to the ovirt-node and node-image. Comments are appreciated. These patches assume that the 3 patches (2 node, 1 node-image) from Joey are all incorporated. Mike