]> sourceware.org Git - lvm2.git/commitdiff
[scripts] remove scripts/vg_convert
authorJoe Thornber <ejt@redhat.com>
Mon, 12 Feb 2018 16:14:32 +0000 (16:14 +0000)
committerJoe Thornber <ejt@redhat.com>
Mon, 30 Apr 2018 08:46:05 +0000 (09:46 +0100)
- it doesn't do anything other than tell you to run vgconvert
- it used to convert from lvm1 format, which is obsolete

scripts/vg_convert [deleted file]

diff --git a/scripts/vg_convert b/scripts/vg_convert
deleted file mode 100755 (executable)
index 6559941..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh -x
-
-# Original script used to convert a VG from LVM1 to LVM2 metadata format.
-# Superceded by 'vgconvert', but left here to show how to do it step-by-step.
-
-# Takes vgname as parameter.  No error checking.  Uses temp file 'lvmbackup'.
-
-echo "Please use the 'vgconvert' tool instead"
-exit 1
-
-./vgcfgbackup $1 || exit 1
-./vgcfgbackup --file lvmbackup $1 || exit 1
-
-CMDS=`./pvscan -u | sed -ne "s/.*PV \(.*\) with UUID \(.*\) VG $1 .*/.\/pvcreate -ff -y -M lvm2 --restorefile lvmbackup -u \2 \1 ; /p"`
-
-sh -x -c "$CMDS" || exit 1
-
-./vgcfgrestore --file lvmbackup -M lvm2 $1 || exit 1
This page took 0.038286 seconds and 5 git commands to generate.