Mainly to include: - distro/rhel9: Make /boot 600 MiB big on RHEL 9.3+ - fedora: exclude sdubby - Minimal image builds Signed-off-by: Ondřej Budai <ondrej@budai.cz>
22 lines
342 B
Go
22 lines
342 B
Go
package environment
|
|
|
|
type Azure struct {
|
|
BaseEnvironment
|
|
}
|
|
|
|
func (p *Azure) GetPackages() []string {
|
|
return []string{
|
|
"cloud-init",
|
|
"WALinuxAgent",
|
|
}
|
|
}
|
|
|
|
func (p *Azure) GetServices() []string {
|
|
return []string{
|
|
"cloud-init.service",
|
|
"cloud-config.service",
|
|
"cloud-final.service",
|
|
"cloud-init-local.service",
|
|
"waagent",
|
|
}
|
|
}
|