Add 'flatpak' to the set of packages for the ostree-installer runroot

Use a newly added Pungi option (https://pagure.io/pungi/pull-request/1278),
so that flatpak is in the Silverblue ostree-installer runroot, which is
needed for embedding Flatpaks in the Silverblue image.

Signed-off-by: Owen W. Taylor <otaylor@fishsoup.net>
This commit is contained in:
Owen W. Taylor 2019-10-15 10:41:11 -04:00
parent c728ed5f0d
commit 434ef6231a

View File

@ -768,6 +768,7 @@ ostree_installer = [
], ],
'template_repo': 'https://pagure.io/fedora-lorax-templates.git', 'template_repo': 'https://pagure.io/fedora-lorax-templates.git',
'template_branch': 'master', 'template_branch': 'master',
'extra_runroot_pkgs': ['flatpak'],
'failable': ['*'], 'failable': ['*'],
}, },
"ppc64le": { "ppc64le": {
@ -791,6 +792,7 @@ ostree_installer = [
], ],
'template_repo': 'https://pagure.io/fedora-lorax-templates.git', 'template_repo': 'https://pagure.io/fedora-lorax-templates.git',
'template_branch': 'master', 'template_branch': 'master',
'extra_runroot_pkgs': ['flatpak'],
'failable': ['*'], 'failable': ['*'],
}, },
"aarch64": { "aarch64": {
@ -814,6 +816,7 @@ ostree_installer = [
], ],
'template_repo': 'https://pagure.io/fedora-lorax-templates.git', 'template_repo': 'https://pagure.io/fedora-lorax-templates.git',
'template_branch': 'master', 'template_branch': 'master',
'extra_runroot_pkgs': ['flatpak'],
'failable': ['*'], 'failable': ['*'],
} }
}) })