debian-forge-composer/vendor/github.com/osbuild/images/internal/environment/azure.go
Ondřej Budai 19edaca01a go.mod: update images to 0.11
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>
2023-10-10 08:17:49 +02:00

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",
}
}