manifest/commit_server: pull in nginx
nginx is a requirement for this pipeline to work.
This commit is contained in:
parent
452cb2dae9
commit
ab4a3c0885
2 changed files with 2 additions and 4 deletions
|
|
@ -94,9 +94,7 @@ var (
|
||||||
packageSets: map[string]packageSetFunc{
|
packageSets: map[string]packageSetFunc{
|
||||||
osPkgsKey: iotCommitPackageSet,
|
osPkgsKey: iotCommitPackageSet,
|
||||||
containerPkgsKey: func(t *imageType) rpmmd.PackageSet {
|
containerPkgsKey: func(t *imageType) rpmmd.PackageSet {
|
||||||
return rpmmd.PackageSet{
|
return rpmmd.PackageSet{}
|
||||||
Include: []string{"nginx"},
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
defaultImageConfig: &distro.ImageConfig{
|
defaultImageConfig: &distro.ImageConfig{
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ func NewOSTreeCommitServerTreePipeline(m *Manifest,
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *OSTreeCommitServerTreePipeline) getPackageSetChain() []rpmmd.PackageSet {
|
func (p *OSTreeCommitServerTreePipeline) getPackageSetChain() []rpmmd.PackageSet {
|
||||||
packages := []string{}
|
packages := []string{"nginx"}
|
||||||
return []rpmmd.PackageSet{
|
return []rpmmd.PackageSet{
|
||||||
{
|
{
|
||||||
Include: append(packages, p.ExtraPackages...),
|
Include: append(packages, p.ExtraPackages...),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue