bootstrap-vz/bootstrapvz/base/fs/partitions/msdos_swap.py
2014-04-02 21:26:13 +02:00

18 lines
475 B
Python

from common.tools import log_check_call
from msdos import MSDOSPartition
class MSDOSSwapPartition(MSDOSPartition):
"""Represents a MS-DOS swap partition
"""
def __init__(self, size, previous):
"""
Args:
size (Bytes): Size of the partition
previous (BasePartition): The partition that preceeds this one
"""
super(MSDOSSwapPartition, self).__init__(size, 'swap', None, previous)
def _before_format(self, e):
log_check_call(['mkswap', self.device_path])