mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
allow networking task when netbase pkg is present
This commit is contained in:
parent
38fc7c5240
commit
5824d0775e
1 changed files with 4 additions and 1 deletions
|
@ -96,7 +96,10 @@ ssh_group = [ssh.AddOpenSSHPackage,
|
|||
|
||||
|
||||
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
|
||||
return []
|
||||
group = [network.ConfigureNetworkIF,
|
||||
|
|
Loading…
Add table
Reference in a new issue