refs #1413 add ogUpdatePartitionTable

pull/1/head
Natalia Serrano 2025-01-30 13:20:27 +01:00
parent 9e02db9136
commit 25901173b9
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#!/usr/bin/python3
import sys
import argparse
from SystemLib import ogHelp
from DiskLib import ogUpdatePartitionTable
ret = ogUpdatePartitionTable()
if ret is not None:
if ret == True: sys.exit (0)
elif ret == False: sys.exit (1)
else: print (ret)