16 lines
612 B
Python
16 lines
612 B
Python
|
# To reproduce sgdisk behaviour in v1 of AIF-NG:
|
||
|
# https://gist.github.com/herry13/5931cac426da99820de843477e41e89e
|
||
|
# https://github.com/dcantrell/pyparted/blob/master/examples/query_device_capacity.py
|
||
|
# TODO: Remember to replicate genfstab behaviour.
|
||
|
|
||
|
try:
|
||
|
# https://stackoverflow.com/a/34812552/733214
|
||
|
# https://github.com/karelzak/util-linux/blob/master/libmount/python/test_mount_context.py#L6
|
||
|
import libmount as mount
|
||
|
except ImportError:
|
||
|
# We should never get here. util-linux is part of core (base) in Arch and uses "libmount".
|
||
|
import pylibmount as mount
|
||
|
##
|
||
|
import parted
|
||
|
import psutil
|