Skip to content

Commit f1ee1e3

Browse files
committed
CA-404517: use wipefs to prepare the volume for storage-init
And have lvcreate wipe signatures as well. Signed-off-by: Mark Syms <[email protected]>
1 parent 0203073 commit f1ee1e3

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed

drivers/EXTSR.py

+1
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ def create(self, sr_uuid, size):
190190
size_mb = stats['freespace'] // (1024 * 1024)
191191
assert(size_mb > 0)
192192
cmd += ["-L", str(size_mb), self.vgname]
193+
cmd += ["-W", "y", "--yes"]
193194
text = util.pread(cmd)
194195

195196
cmd = ["lvchange", "-ay", self.remotepath]

drivers/lvutil.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ def create(name, size, vgname, tag=None, size_in_percentage=None):
599599
if tag:
600600
cmd.extend(["--addtag", tag])
601601

602-
cmd.extend(['-W', 'n'])
602+
cmd.extend(['-W', 'y', '--yes'])
603603
cmd_lvm(cmd)
604604

605605

scripts/storage-init

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ diskprep() {
5050
done
5151

5252
# erase the start of the volume to get rid of other metadata:
53-
echo "* Erasing start of volume"
54-
dd if=/dev/zero of=${disk} count=10 bs=1024k &>/dev/null
53+
echo "* Erasing any filesystems on volume"
54+
wipefs -a ${disk}
5555

5656
echo "Complete."
5757
}

tests/lvmlib.py

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ def fake_lvcreate(self, args, stdin):
7979
parser.add_argument("--inactive", dest='inactive', action='store_true')
8080
parser.add_argument("--zero", dest='zero', default='y')
8181
parser.add_argument("-W", dest='wipe_sig')
82+
parser.add_argument("--yes", dest='all_yes', action="store_true")
8283
parser.add_argument('vgname')
8384
try:
8485
args = parser.parse_args(args[1:])

tests/test_storage_init.py

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ def setUp(self):
8989
self.create_mock_command("xe")
9090

9191
self.create_dummy_command("dd")
92+
self.create_dummy_command("wipefs")
9293
self.create_dummy_command("logger")
9394
self.create_dummy_command("pvremove")
9495
self.create_dummy_command("pvs")

0 commit comments

Comments
 (0)