bootstrap-vz/base/fs/partitions/gpt_swap.py
2014-02-27 23:03:23 +01:00

11 lines
304 B
Python

from common.tools import log_check_call
from gpt import GPTPartition
class GPTSwapPartition(GPTPartition):
def __init__(self, size, previous):
super(GPTSwapPartition, self).__init__(size, 'swap', None, 'swap', previous)
def _before_format(self, e):
log_check_call(['mkswap', self.device_path])