2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-03-29 11:38:16 +00:00

Correct syntax issue in el7 image2disk

This commit is contained in:
Jarrod Johnson 2023-09-18 11:04:50 -04:00
parent a01b7c6503
commit 3e8c6d1ea6

View File

@ -60,7 +60,7 @@ class PartedRunner():
def __init__(self, disk):
self.disk = disk
def run(self, command, check=True)::
def run(self, command, check=True):
command = command.split()
command = ['parted', '-a', 'optimal', '-s', self.disk] + command
if check: