search for: live_root

Displaying 12 results from an estimated 12 matches for "live_root".

Did you mean: hivex_root
2010 Apr 13
1
[PATCH node] refactor node image recipe
...ifests.tar +rm -Rf $manifests +%end + +%post --nochroot +# Move manifest tar to build directory +mv $INSTALL_ROOT/ovirt-node-image-manifests*.tar . + +# only works on x86, x86_64 +if [ "$(uname -i)" = "i386" -o "$(uname -i)" = "x86_64" ]; then + if [ ! -d $LIVE_ROOT/LiveOS ]; then mkdir -p $LIVE_ROOT/LiveOS ; fi + cp /usr/bin/livecd-iso-to-disk $LIVE_ROOT/LiveOS + cp /usr/bin/livecd-iso-to-pxeboot $LIVE_ROOT/LiveOS +fi +%end + diff --git a/recipe/common-manifest-pre.ks b/recipe/common-manifest-pre.ks new file mode 100644 index 0000000..c88f0cc --- /dev/n...
2011 Aug 25
1
[PATCH node 1/3] add reinstall and uninstall options to boot menu
...chroot.ks | 19 +++++++++++++++++-- 1 files changed, 17 insertions(+), 2 deletions(-) diff --git a/recipe/common-nochroot.ks b/recipe/common-nochroot.ks index c5d009f..c6dd76d 100644 --- a/recipe/common-nochroot.ks +++ b/recipe/common-nochroot.ks @@ -17,6 +17,9 @@ sed -i -e 's/ quiet//' $LIVE_ROOT/isolinux/isolinux.cfg # Remove Verify and Boot option sed -i -e '/label check0/{N;N;N;d;}' $LIVE_ROOT/isolinux/isolinux.cfg +# Rename Boot option to Install or Upgrade +sed -i 's/^ menu label Boot$/ menu label Install or Upgrade/' $LIVE_ROOT/isolinux/isolinux.cfg + # add seria...
2009 Sep 08
2
[PATCH node-image] Add ability to set persistent ssh_host_keys on the node, usefull if you run diskless instance of ovirt-node
...OOT/etc/ssh/ssh_host_rsa_key.pub + chown root:root $INSTALL_ROOT/etc/ssh/*key* + chmod 600 $INSTALL_ROOT/etc/ssh/*key + chmod 644 $INSTALL_ROOT/etc/ssh/*key.pub +fi + echo "Fixing boot menu" # remove quiet from Node bootparams, added by livecd-creator sed -i -e 's/ quiet//' $LIVE_ROOT/isolinux/isolinux.cfg -- 1.6.2.5
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 10
0
Re: persistent ssh_host_keys
...ssh/*key* > > + chmod 600 $INSTALL_ROOT/etc/ssh/*key > > + chmod 644 $INSTALL_ROOT/etc/ssh/*key.pub > > +fi > > + > > echo "Fixing boot menu" > > # remove quiet from Node bootparams, added by livecd-creator > > sed -i -e 's/ quiet//' $LIVE_ROOT/isolinux/isolinux.cfg > > Pierre-Gilles Mialon > Responsable h?bergement :: Head of Hosting services > pmialon at linagora.com :: +33.1 58 18 65 46 > Linagora :: http://www.linagora.com > 27 rue de Berri :: 75008 PARIS > -------------- next part -------------- > A non-text...
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.
2009 Jun 25
0
[PATCH node-image] kdump support
...veos echo "/dev/HostVG/Config /config ext3 defaults,noauto 0 0" >> /etc/fstab + +# kdump configuration +augtool <<\EOF +set /files/etc/sysconfig/kdump/KDUMP_BOOTDIR /boot-kdump +save +EOF +mkdir -p /boot-kdump + %end %post @@ -63,7 +71,7 @@ sed -i -e 's/ quiet//' $LIVE_ROOT/isolinux/isolinux.cfg awk ' BEGIN { # append additional default boot parameters - add_boot_params="check" + add_boot_params="check crashkernel=128M at 16M" } /^label linux0/ { linux0=1 } linux0==1 && $1=="append" { -- 1.6.0.6
2009 Sep 08
0
[PATCH node-image] Working version of Add the ability to use persistent ssh_host_keys on the ovirt-node
...OOT/etc/ssh/ssh_host_rsa_key.pub + chown root:root $INSTALL_ROOT/etc/ssh/*key* + chmod 600 $INSTALL_ROOT/etc/ssh/*key + chmod 644 $INSTALL_ROOT/etc/ssh/*key.pub +fi + echo "Fixing boot menu" # remove quiet from Node bootparams, added by livecd-creator sed -i -e 's/ quiet//' $LIVE_ROOT/isolinux/isolinux.cfg -- 1.6.2.5
2009 Jul 29
5
ovirt-node-image patchset Fedora
modified ovirt-node-image for inclusion in Fedora Removes ovirt-node-image-pxe sub package adds get-ovirt-node-image script adds generate-ovirt-node-pxe-tree script (replaces subpackage) moved all the scripts/tools into tools subdir adds new rpm, ovirt-node-recipe includes tools, manifests, and ks file/recipe Process for building upstream ovirt node packages.... 1. Build ovir-node.rpm in koji
2011 Jul 23
0
[PATCH] move dracut config and patching to spec
...-/sbin/dracut -f -a "ovirtnode" -a "multipath" /initrd0.img "$kernel" -echo "done." - -%end - -%post --nochroot - -# replace initramfs if regenerated -if [ -f "$INSTALL_ROOT/initrd0.img" ]; then - mv -v "$INSTALL_ROOT/initrd0.img" "$LIVE_ROOT/isolinux/initrd0.img" -fi - -%end diff --git a/recipe/ovirt-node-image.ks.in b/recipe/ovirt-node-image.ks.in index 2c9fcf6..5eaa813 100644 --- a/recipe/ovirt-node-image.ks.in +++ b/recipe/ovirt-node-image.ks.in @@ -21,8 +21,6 @@ %end -%include common-initrd.ks - %post --nochroot --interp...
2013 May 10
4
remotely mounting client disks in p2v server
Just spent a little time poking around w/ p2v and am attaching the following pseudo-code for consideration. Note the patches aren't commit ready yet, just looking for thoughts - The first is a fix to get client image building process working on F17. It seems the version of ksflatten there didn't expand the nested %includes which was causing errors (also --interpreter image-minimizer
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is time to remove it from libguestfs. [1] https://github.com/libguestfs/virt-p2v [2] http://download.libguestfs.org/virt-p2v/ Pino Toscano (2): Remove virt-p2v Remove remaining virt-p2v bits .gitignore | 4 - Makefile.am | 7 +- bash/Makefile.am