forked from srbala/fedora-kickstarts
fedora-atomic: split out kickstarts to fix vagrant
In the vagrant kickstarts we had something like %include fedora-atomic-vagrant.ks %include fedora-atomic-updates.ks but both fedora-atomic-updates.ks and fedora-atomic-vagrant.ks included fedora-atomic.ks which means we got duplicate things in the flattened ks and we get errors. This splits it out a bit farther so we don't get duplicates.
This commit is contained in:
parent
899bc45aa1
commit
9e89057b4a
27
fedora-atomic-testing-base.ks
Normal file
27
fedora-atomic-testing-base.ks
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
|
||||||
|
# ./fedora-atomic-testing-base.ks - for building media from the testing
|
||||||
|
# refs (fedora/29/${basearch}/testing/atomic-host)
|
||||||
|
|
||||||
|
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=https://kojipkgs.fedoraproject.org/compose/atomic/repo/ --ref=fedora/29/${basearch}/testing/atomic-host
|
||||||
|
|
||||||
|
%post --erroronfail
|
||||||
|
# Find the architecture we are on
|
||||||
|
arch=$(uname -m)
|
||||||
|
# Set the origin to the "main stable ref", distinct from /testing/ which is where bodhi writes.
|
||||||
|
# We want consumers of this image to track the two week releases.
|
||||||
|
ostree admin set-origin --index 0 fedora-atomic https://dl.fedoraproject.org/atomic/repo/ "fedora/29/${arch}/atomic-host"
|
||||||
|
|
||||||
|
# Make sure the ref we're supposedly sitting on (according
|
||||||
|
# to the updated origin) exists.
|
||||||
|
ostree refs "fedora-atomic:fedora/29/${arch}/testing/atomic-host" --create "fedora-atomic:fedora/29/${arch}/atomic-host"
|
||||||
|
|
||||||
|
# Remove the old ref so that the commit eventually gets
|
||||||
|
# cleaned up.
|
||||||
|
ostree refs "fedora-atomic:fedora/29/${arch}/testing/atomic-host" --delete
|
||||||
|
|
||||||
|
# delete/add the remote with new options to enable gpg verification
|
||||||
|
# and to point them at the cdn url
|
||||||
|
ostree remote delete fedora-atomic
|
||||||
|
ostree remote add --set=gpg-verify=true --set=gpgkeypath=/etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-29-primary fedora-atomic 'https://dl.fedoraproject.org/atomic/repo/'
|
||||||
|
|
||||||
|
%end
|
@ -1,29 +1,6 @@
|
|||||||
|
|
||||||
# ./fedora-atomic-testing.ks - for building media from the testing
|
# ./fedora-atomic-testing.ks - for building base cloud media
|
||||||
# refs (fedora/29/${basearch}/testing/atomic-host)
|
# from the testing refs (fedora/29/${basearch}/testing/atomic-host)
|
||||||
|
|
||||||
%include fedora-atomic.ks
|
%include fedora-atomic.ks
|
||||||
|
%include fedora-atomic-testing-base.ks
|
||||||
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=https://kojipkgs.fedoraproject.org/compose/atomic/repo/ --ref=fedora/29/${basearch}/testing/atomic-host
|
|
||||||
|
|
||||||
%post --erroronfail
|
|
||||||
# Find the architecture we are on
|
|
||||||
arch=$(uname -m)
|
|
||||||
# Set the origin to the "main stable ref", distinct from /testing/ which is where bodhi writes.
|
|
||||||
# We want consumers of this image to track the two week releases.
|
|
||||||
ostree admin set-origin --index 0 fedora-atomic https://dl.fedoraproject.org/atomic/repo/ "fedora/29/${arch}/atomic-host"
|
|
||||||
|
|
||||||
# Make sure the ref we're supposedly sitting on (according
|
|
||||||
# to the updated origin) exists.
|
|
||||||
ostree refs "fedora-atomic:fedora/29/${arch}/testing/atomic-host" --create "fedora-atomic:fedora/29/${arch}/atomic-host"
|
|
||||||
|
|
||||||
# Remove the old ref so that the commit eventually gets
|
|
||||||
# cleaned up.
|
|
||||||
ostree refs "fedora-atomic:fedora/29/${arch}/testing/atomic-host" --delete
|
|
||||||
|
|
||||||
# delete/add the remote with new options to enable gpg verification
|
|
||||||
# and to point them at the cdn url
|
|
||||||
ostree remote delete fedora-atomic
|
|
||||||
ostree remote add --set=gpg-verify=true --set=gpgkeypath=/etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-29-primary fedora-atomic 'https://dl.fedoraproject.org/atomic/repo/'
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
27
fedora-atomic-updates-base.ks
Normal file
27
fedora-atomic-updates-base.ks
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
|
||||||
|
# ./fedora-atomic-updates-base.ks - for building media from the updates
|
||||||
|
# refs (fedora/29/${basearch}/updates/atomic-host)
|
||||||
|
|
||||||
|
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=https://kojipkgs.fedoraproject.org/compose/atomic/repo/ --ref=fedora/29/${basearch}/updates/atomic-host
|
||||||
|
|
||||||
|
%post --erroronfail
|
||||||
|
# Find the architecture we are on
|
||||||
|
arch=$(uname -m)
|
||||||
|
# Set the origin to the "main stable ref", distinct from /updates/ which is where bodhi writes.
|
||||||
|
# We want consumers of this image to track the two week releases.
|
||||||
|
ostree admin set-origin --index 0 fedora-atomic https://dl.fedoraproject.org/atomic/repo/ "fedora/29/${arch}/atomic-host"
|
||||||
|
|
||||||
|
# Make sure the ref we're supposedly sitting on (according
|
||||||
|
# to the updated origin) exists.
|
||||||
|
ostree refs "fedora-atomic:fedora/29/${arch}/updates/atomic-host" --create "fedora-atomic:fedora/29/${arch}/atomic-host"
|
||||||
|
|
||||||
|
# Remove the old ref so that the commit eventually gets
|
||||||
|
# cleaned up.
|
||||||
|
ostree refs "fedora-atomic:fedora/29/${arch}/updates/atomic-host" --delete
|
||||||
|
|
||||||
|
# delete/add the remote with new options to enable gpg verification
|
||||||
|
# and to point them at the cdn url
|
||||||
|
ostree remote delete fedora-atomic
|
||||||
|
ostree remote add --set=gpg-verify=true --set=gpgkeypath=/etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-29-primary fedora-atomic 'https://dl.fedoraproject.org/atomic/repo/'
|
||||||
|
|
||||||
|
%end
|
@ -1,29 +1,6 @@
|
|||||||
|
|
||||||
# ./fedora-atomic-updates.ks - for building media from the updates
|
# ./fedora-atomic-updates.ks - for building base cloud media
|
||||||
# refs (fedora/29/${basearch}/updates/atomic-host)
|
# from the updates refs (fedora/29/${basearch}/updates/atomic-host)
|
||||||
|
|
||||||
%include fedora-atomic.ks
|
%include fedora-atomic.ks
|
||||||
|
%include fedora-atomic-updates-base.ks
|
||||||
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=https://kojipkgs.fedoraproject.org/compose/atomic/repo/ --ref=fedora/29/${basearch}/updates/atomic-host
|
|
||||||
|
|
||||||
%post --erroronfail
|
|
||||||
# Find the architecture we are on
|
|
||||||
arch=$(uname -m)
|
|
||||||
# Set the origin to the "main stable ref", distinct from /updates/ which is where bodhi writes.
|
|
||||||
# We want consumers of this image to track the two week releases.
|
|
||||||
ostree admin set-origin --index 0 fedora-atomic https://dl.fedoraproject.org/atomic/repo/ "fedora/29/${arch}/atomic-host"
|
|
||||||
|
|
||||||
# Make sure the ref we're supposedly sitting on (according
|
|
||||||
# to the updated origin) exists.
|
|
||||||
ostree refs "fedora-atomic:fedora/29/${arch}/updates/atomic-host" --create "fedora-atomic:fedora/29/${arch}/atomic-host"
|
|
||||||
|
|
||||||
# Remove the old ref so that the commit eventually gets
|
|
||||||
# cleaned up.
|
|
||||||
ostree refs "fedora-atomic:fedora/29/${arch}/updates/atomic-host" --delete
|
|
||||||
|
|
||||||
# delete/add the remote with new options to enable gpg verification
|
|
||||||
# and to point them at the cdn url
|
|
||||||
ostree remote delete fedora-atomic
|
|
||||||
ostree remote add --set=gpg-verify=true --set=gpgkeypath=/etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-29-primary fedora-atomic 'https://dl.fedoraproject.org/atomic/repo/'
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
@ -3,4 +3,4 @@
|
|||||||
# refs (fedora/29/${basearch}/testing/atomic-host) for vagrant
|
# refs (fedora/29/${basearch}/testing/atomic-host) for vagrant
|
||||||
|
|
||||||
%include fedora-atomic-vagrant.ks
|
%include fedora-atomic-vagrant.ks
|
||||||
%include fedora-atomic-testing.ks
|
%include fedora-atomic-testing-base.ks
|
||||||
|
@ -3,4 +3,4 @@
|
|||||||
# refs (fedora/29/${basearch}/updates/atomic-host) for vagrant
|
# refs (fedora/29/${basearch}/updates/atomic-host) for vagrant
|
||||||
|
|
||||||
%include fedora-atomic-vagrant.ks
|
%include fedora-atomic-vagrant.ks
|
||||||
%include fedora-atomic-updates.ks
|
%include fedora-atomic-updates-base.ks
|
||||||
|
Loading…
Reference in New Issue
Block a user