Displaying 4 results from an estimated 4 matches for "root2_devic".
Did you mean:
root2_device
2010 Mar 23
1
[PATCH node][RFC] 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 | 49 ++++++++++++++++++++++++---------------
scripts/ovirt-functions | 27 ++++++++++++++++++++++
3 files changed, 58
2010 Oct 27
0
[PATCH node] add uninstall module
...t find Root device")
+ sys.exit(2)
+ root_dev, root_part = get_part_info(root_device)
+
+ root2_label_lookup_cmd = "findfs LABEL=" + root2
+ root2_label_lookup = subprocess.Popen(root2_label_lookup_cmd, shell=True, stdout=PIPE, stderr=STDOUT)
+ root2_device = root2_label_lookup.stdout.read()
+ if root2_device is None:
+ log("Can't find RootBackup/RootNew/RootUpdate device")
+ sys.exit(3)
+ root2_dev, root2_part = get_part_info(root2_device)
+
+ pv_lookup_cmd = "pvs --noheadings -o pv_name,...
2010 Mar 23
0
[PATCH node] 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
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