mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
Merge pull request #414 from CMeza99/netbase
allow networking task when netbase pkg is present
This commit is contained in:
commit
9445273b8e
1 changed files with 4 additions and 1 deletions
|
@ -96,7 +96,10 @@ ssh_group = [ssh.AddOpenSSHPackage,
|
||||||
|
|
||||||
|
|
||||||
def get_network_group(manifest):
|
def get_network_group(manifest):
|
||||||
if manifest.bootstrapper.get('variant', None) == 'minbase':
|
if (
|
||||||
|
manifest.bootstrapper.get('variant', None) == 'minbase' and
|
||||||
|
'netbase' not in manifest.bootstrapper.get('include_packages', [])
|
||||||
|
):
|
||||||
# minbase has no networking
|
# minbase has no networking
|
||||||
return []
|
return []
|
||||||
group = [network.ConfigureNetworkIF,
|
group = [network.ConfigureNetworkIF,
|
||||||
|
|
Loading…
Add table
Reference in a new issue