mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 09:50:37 +00:00
12 lines
265 B
Python
12 lines
265 B
Python
![]() |
from common.tools import log_check_call
|
||
|
from partition import Partition
|
||
|
|
||
|
|
||
|
class Swap(Partition):
|
||
|
|
||
|
def __init__(self, size, previous):
|
||
|
super(Swap, self).__init__(size, 'swap', previous)
|
||
|
|
||
|
def _format(self, e):
|
||
|
log_check_call(['/sbin/mkswap', self.device_path])
|