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>
18 lines
299 B
Go
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",
|
|
}
|
|
}
|