debian-forge-composer/vendor/github.com/osbuild/images/internal/environment/ec2.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

18 lines
299 B
Go

package environment
type EC2 struct {
BaseEnvironment
}
func (p *EC2) GetPackages() []string {
return []string{"cloud-init"}
}
func (p *EC2) GetServices() []string {
return []string{
"cloud-init.service",
"cloud-config.service",
"cloud-final.service",
"cloud-init-local.service",
}
}