Fix ostree config

Signed-off-by: Patrick Uiterwijk <patrick@puiterwijk.org>
This commit is contained in:
Patrick Uiterwijk 2017-10-25 21:21:58 +02:00
parent 4b15a2367b
commit 9b9cdd4e2b

View file

@ -108,7 +108,11 @@ ostree = [
[% if release.version_int >= 27 %] [% if release.version_int >= 27 %]
"version": "!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN", "version": "!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN",
[% endif %] [% endif %]
"treefile": "fedora-atomic-host.json", [% if release.version_int == 25 %]
"treefile": "fedora-atomic-docker-host.json",
[% else %]
"treefile": "fedora-atomic-host.json",
[% endif %]
"config_url": "https://pagure.io/fedora-atomic.git", "config_url": "https://pagure.io/fedora-atomic.git",
"config_branch": "f[[ release.version ]]", "config_branch": "f[[ release.version ]]",
"repo": [ "repo": [
@ -120,7 +124,7 @@ ostree = [
"https://dl.fedoraproject.org/pub/fedora/linux/releases/[[ release.version_int ]]/Everything/x86_64/os/" "https://dl.fedoraproject.org/pub/fedora/linux/releases/[[ release.version_int ]]/Everything/x86_64/os/"
] ]
"ostree_repo": "/mnt/koji/compose/updates/atomic/[[ request.name ]]", "ostree_repo": "/mnt/koji/compose/updates/atomic/[[ request.name ]]",
"tag_ref": False "tag_ref": True
} }
}) })
] ]