Displaying 5 results from an estimated 5 matches for "not_ovirt_firstboot".
2009 Sep 01
1
[PATCH node-image] readonly rootfs setup
...ltime
+files /var/lib/dbus
+files /var/lib/libvirt
+empty /mnt
+EOF
diff --git a/ovirt-node-image.ks b/ovirt-node-image.ks
index 802b6a5..6b9e2ac 100644
--- a/ovirt-node-image.ks
+++ b/ovirt-node-image.ks
@@ -19,6 +19,7 @@ augtool <<\EOF
set /files/etc/sysconfig/readonly-root/TEMPORARY_STATE NOT_OVIRT_FIRSTBOOT
set /files/etc/sysconfig/readonly-root/STATE_LABEL CONFIG
set /files/etc/sysconfig/readonly-root/STATE_MOUNT /config
+set /files/etc/sysconfig/readonly-root/READONLY yes
save
EOF
# use persistent state unless firstboot is forced
--
1.6.2.5
2010 Apr 13
1
[PATCH node] refactor node image recipe
...ed this for F12 findfs calls
# Otherwise, findfs returns /dev/sdX instead of /dev/mapper/<wwid>
echo "EVALUATE=scan" > /etc/blkid.conf
+
+touch /.autorelabel
+
+# prepare for STATE_MOUNT in rc.sysinit
+augtool <<\EOF
+set /files/etc/sysconfig/readonly-root/TEMPORARY_STATE NOT_OVIRT_FIRSTBOOT
+set /files/etc/sysconfig/readonly-root/STATE_LABEL CONFIG
+set /files/etc/sysconfig/readonly-root/STATE_MOUNT /config
+set /files/etc/sysconfig/readonly-root/READONLY yes
+save
+EOF
+# use persistent state unless firstboot is forced
+# XXX auges shellvars lens does not accept this value
+sed -i ...
2010 Jul 21
0
[PATCH] RFC: Advanced Storage Configuration
...+++++++++++++++++-----
scripts/ovirt-functions | 17 +++
4 files changed, 442 insertions(+), 97 deletions(-)
diff --git a/recipe/common-post.ks b/recipe/common-post.ks
index fed5b6b..c79e186 100644
--- a/recipe/common-post.ks
+++ b/recipe/common-post.ks
@@ -217,6 +217,7 @@ sed -i 's at NOT_OVIRT_FIRSTBOOT@$(if cat /proc/cmdline|grep -qv ovirt_firstboot; t
mkdir -p /boot
mkdir -p /config
mkdir -p /data
+mkdir -p /data2
mkdir -p /liveos
echo "/dev/HostVG/Config /config ext3 defaults,noauto,noatime 0 0" >> /etc/fstab
diff --git a/scripts/ovirt-config-storage b/scripts/ovirt-confi...
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.