Displaying 6 results from an estimated 6 matches for "482441a".
2010 Mar 24
1
[PATCH] Allow persistance of empty config files in ovirt_store_config
...ally generated to well known locations can be pre set for persistance.
Signed-off-by: Ricardo Marin Matinata <matinata at br.ibm.com>
---
scripts/ovirt-functions | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/scripts/ovirt-functions b/scripts/ovirt-functions
index 482441a..cecb359 100644
--- a/scripts/ovirt-functions
+++ b/scripts/ovirt-functions
@@ -496,7 +496,7 @@ ovirt_store_config() {
if $persist_it; then
# skip if file does not exist or is empty
- if [ ! -s "${filename}" ]; then
+ if [ ! -e...
2010 Mar 25
1
[PATCH] Allow persistance of empty config files in ovirt_store_config v2
...one time) to well known locations can be pre set for persistance.
Signed-off-by: Ricardo Marin Matinata <matinata at br.ibm.com>
---
scripts/ovirt-functions | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/scripts/ovirt-functions b/scripts/ovirt-functions
index 482441a..1c3336d 100644
--- a/scripts/ovirt-functions
+++ b/scripts/ovirt-functions
@@ -495,9 +495,9 @@ ovirt_store_config() {
fi
if $persist_it; then
- # skip if file does not exist or is empty
- if [ ! -s "${filename}" ]; then
-...
2010 Mar 23
1
[PATCH node][RFC] Remove dependencies on /dev/disk/by-label entries
...stVG "${partpv}"
- mkdir -p /dev/disk/by-label
-
if [ "$SWAP_SIZE" -gt 0 ]; then
log "Creating swap partition"
lvcreate --name Swap --size ${SWAP_SIZE}M /dev/HostVG
diff --git a/scripts/ovirt-functions b/scripts/ovirt-functions
index b98e31a..482441a 100644
--- a/scripts/ovirt-functions
+++ b/scripts/ovirt-functions
@@ -283,7 +283,7 @@ mount_liveos() {
return 0
fi
mkdir -p /liveos
- mount /dev/disk/by-label/Root /liveos
+ mount LABEL=Root /liveos
}
# mount config partition
@@ -326,7 +326,7 @@ mount_boot() {
r...
2010 Mar 24
1
Resending a refactored patch...
This was an older patch that had to be rebased against the current
tip.
2010 Mar 24
1
Supercedes previous patch...
This includes a missed break and two spots where $ADDRESS was copied
as $address instead.
2010 Mar 24
2
[PATCH node][REPOST 1/2] Fix uninstall to detect and cleanup correct partitions
Previous implementation had staticly defined partitions to remove.
This would break in the case of split Root and HostVG devices.
Signed-off-by: Mike Burns <mburns at redhat.com>
---
scripts/ovirt-config-boot | 11 +--------
scripts/ovirt-config-uninstall | 48 ++++++++++++++++++++++++---------------
scripts/ovirt-functions | 33 +++++++++++++++++++++++++++
3 files