Displaying 3 results from an estimated 3 matches for "ram_default".
Did you mean:
  can_default
  
[PATCH node-image] Fix create-ovirt-iso-nodes to allow manual specification of network bridge to use
2009 Jul 05
2
[PATCH node-image] Fix create-ovirt-iso-nodes to allow manual specification of network bridge to use
...)
+  -b: network name (default: $NET_DEFAULT)
   -d: directory to place virtual disk (default: $IMGDIR_DEFAULT)
   -c: number of disks per fake node (default: $NUM_DISKS_DEFAULT)
   -s: node range (default: $RANGE_DEFAULT)
@@ -96,10 +97,12 @@ num_disks=$NUM_DISKS_DEFAULT
 range=$RANGE_DEFAULT
 ram=$RAM_DEFAULT
 vcpus=$VCPUS_DEFAULT
-while getopts :d:n:s:c:v:r:xh c; do
+net=$NET_DEFAULT
+while getopts :d:n:b:s:c:v:r:xh c; do
     case $c in
         n) nodeimg=$OPTARG;;
         d) imgdir=$OPTARG;;
+        b) net=$OPTARG;;
         c) num_disks=$OPTARG;;
         s) range=$OPTARG;;
         v) vcpus=$OPT...
2009 Oct 14
4
Refactor ovirt-node-image code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora.
Removed ks files, now in ovirt-node-recipe, which is subpackage of ovirt-node.
Removed tools, these are now in ovirt-node-recipe which is subpackage of
ovirt-node.
2009 Oct 14
8
Refactor ovirt-node code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora.
Moves tools and kickstart files form ovirt-node-image to subpackage ovirt-node-recipe.
Removes old sub packages form ovirt-node, stateless, logos, selinux.
Modifies init scripts to meet Fedora packaging guidelines: added status, reload, and lockfile, rhbz: 514221
Added License file.