mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
16 lines
389 B
Python
16 lines
389 B
Python
from bootstrapvz.base import Task
|
|
from bootstrapvz.common import phases
|
|
from . import assets
|
|
import os.path
|
|
import shutil
|
|
|
|
|
|
class InstallDHCPCD(Task):
|
|
description = 'Replacing isc-dhcp with dhcpcd5'
|
|
phase = phases.preparation
|
|
|
|
@classmethod
|
|
def run(cls, info):
|
|
info.packages.add('dhcpcd5')
|
|
info.exclude_packages.add('isc-dhcp-client')
|
|
info.exclude_packages.add('isc-dhcp-common')
|