mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
17 lines
549 B
Python
17 lines
549 B
Python
from bootstrapvz.common.tools import log_check_call
|
|
from msdos import MSDOSPartition
|
|
|
|
|
|
class MSDOSSwapPartition(MSDOSPartition):
|
|
"""Represents a MS-DOS swap partition
|
|
"""
|
|
|
|
def __init__(self, size, previous):
|
|
"""
|
|
:param Bytes size: Size of the partition
|
|
:param BasePartition previous: The partition that preceeds this one
|
|
"""
|
|
super(MSDOSSwapPartition, self).__init__(size, 'swap', None, None, 'swap', previous)
|
|
|
|
def _before_format(self, e):
|
|
log_check_call(['mkswap', self.device_path])
|