mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
11 lines
289 B
Python
11 lines
289 B
Python
from common.tools import log_check_call
|
|
from mbr import MBRPartition
|
|
|
|
|
|
class MBRSwapPartition(MBRPartition):
|
|
|
|
def __init__(self, size, previous):
|
|
super(MBRSwapPartition, self).__init__(size, 'swap', previous)
|
|
|
|
def _format(self, e):
|
|
log_check_call(['/sbin/mkswap', self.device_path])
|