fix: configurable OVMF/machine type, routes syntax, package lists, interface names
This commit is contained in:
@@ -147,21 +147,27 @@ bootstrap_archlinux: >-
|
||||
|
||||
bootstrap_alpine: >-
|
||||
{{
|
||||
['alpine-base', 'vim']
|
||||
['alpine-base', 'btrfs-progs', 'chrony', 'curl', 'e2fsprogs',
|
||||
'logrotate', 'lvm2', 'python3', 'rsync', 'sudo',
|
||||
'util-linux', 'vim', 'xfsprogs']
|
||||
+ [('openssh' if system_cfg.features.ssh.enabled | bool else '')]
|
||||
+ bootstrap_common_conditional
|
||||
}}
|
||||
|
||||
bootstrap_opensuse: >-
|
||||
{{
|
||||
['vim']
|
||||
['btrfs-progs', 'chrony', 'curl', 'e2fsprogs',
|
||||
'glibc-locale', 'logrotate', 'lvm2', 'NetworkManager',
|
||||
'python3', 'rsync', 'sudo', 'vim', 'xfsprogs']
|
||||
+ [('openssh' if system_cfg.features.ssh.enabled | bool else '')]
|
||||
+ bootstrap_common_conditional
|
||||
}}
|
||||
|
||||
bootstrap_void: >-
|
||||
{{
|
||||
['vim']
|
||||
['btrfs-progs', 'chrony', 'curl', 'dhcpcd', 'e2fsprogs',
|
||||
'logrotate', 'lvm2', 'python3', 'rsync', 'sudo',
|
||||
'vim', 'xfsprogs']
|
||||
+ [('openssh' if system_cfg.features.ssh.enabled | bool else '')]
|
||||
+ bootstrap_common_conditional
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user