Displaying 6 results from an estimated 6 matches for "nodeimg_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
...#39; "$ME" "$*" >&2; }
try_h() { printf "Try \`$ME -h' for more information.\n" >&2; }
die() { warn "$@"; try_h; exit 1; }
-BRIDGENAME=ovirtbr0
+NET_DEFAULT=network:default
IMGDIR_DEFAULT=/var/lib/libvirt/images
imgdir=$IMGDIR_DEFAULT
NODEIMG_DEFAULT=/usr/share/ovirt-node-image/ovirt-node-image.iso
@@ -66,7 +66,7 @@ gen_fake_managed_node() {
# that just defines the VM w/o starting it.
virt-install --name=node$num --ram=$ram --vcpus=$vcpus $disks \
--cdrom=$dest_nodeimg --livecd \
- --network=bridge:$BRIDGENAME --mac=00...
2009 Aug 03
0
[PATCH node-image] Fix edit-livecd to re-create ext2 filesystem each time
...Myers <pmyers at redhat.com>
---
edit-livecd | 123 ++++++++++++++++++++++++++++++++++++++++++++++++++++------
1 files changed, 110 insertions(+), 13 deletions(-)
diff --git a/edit-livecd b/edit-livecd
index d69ca9d..e94b1e6 100755
--- a/edit-livecd
+++ b/edit-livecd
@@ -31,7 +31,7 @@ CD=$NODEIMG_DEFAULT
usage() {
case $# in 1) warn "$1"; try_h; exit 1;; esac
cat <<EOF
-Usage: $ME -i LiveCD.iso [-b bootparams] [-p program]
+Usage: $ME -i LiveCD.iso [-b bootparams] [-p program] [-s MB]
-b BOOTPARAMS optional parameters appended to the kernel command line
-i LIVECD.i...
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 Sep 22
1
[PATCH] edit-livecd in python
..., USA.
-#!/bin/bash
-
-PATH=$PATH:/sbin:/usr/sbin
-
-ME=$(basename "$0")
-warn() { printf '%s: %s\n' "$ME" "$*" >&2; }
-try_h() { printf "Try \`$ME -h' for more information.\n" >&2; }
-die() { warn "$@"; try_h; exit 1; }
-
-NODEIMG_DEFAULT=/usr/share/ovirt-node-image/ovirt-node-image.iso
-CD=$NODEIMG_DEFAULT
-
-usage() {
- case $# in 1) warn "$1"; try_h; exit 1;; esac
- cat <<EOF
-Usage: $ME -i LiveCD.iso [-b bootparams] [-p program]
- -b BOOTPARAMS optional parameters appended to the kernel command line
- -i...
2009 Aug 20
3
[PATCH ovirt-node-image] fixes for edit-livecd
Patch set fixes issues with image size increase when using edit-livecd
Also address issue with ext4 root fs
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.