<dustymabe>
when I do `rpm-ostree override replace <bodhi URL>` I wonder if there is a way to tell it to only install the rpms that already exist in the base layer
<dustymabe>
and not extra ones
<dustymabe>
actually ignore me.. it doesn't install the extra ones, it only downloads them
<dustymabe>
still - don't know if there is a way to tell it to only downlod the ones you need.. i guess that is problematic because a new subpackage/dep could have been added
<jlebon>
dustymabe: not currently. it indeed needs to be made much smarter.
<dustymabe>
cverna: can we work to get FCOS considered as a real edition for F37 (the cloud working group is making progress on getting re-approved)
<davdunc[m>
+1 dustymabe
bagasse has joined #fedora-coreos
jcajka has quit [Quit: Leaving]
paragan has quit [Quit: Leaving]
bagasse has quit [Quit: Leaving]
Betal has joined #fedora-coreos
Betal has quit [Quit: WeeChat 3.5]
<dustymabe>
davdunc[m: how does AWS hand out ipv6 addresses?
<cverna>
dustymabe: I was supposed to chat with Adam couple weeks ago but could not find a good time (calendaring is pretty hard :( ). I think our main blocking point if how we fit within Fedora QA. At least that was the biggest push back last time we submitted the change
bgilbert has joined #fedora-coreos
<dustymabe>
cverna: can we try again?
<cverna>
adamw: Do you have some time on Monday to discuss FCOS as an edition ?
<cverna>
tbh, I have not had a lot of motivation to push this change :(, so I appreciate the poke :P
<adamw>
cverna: sure
<cverna>
adamw: 👍️, Ill put something in your calendar, let me know if that does not work for you :)
<adamw>
we have qa team meeting at 8am my time
<cverna>
Ok I was looking at 11am your time, which is a bit late for me but at least the kids are in bed so it's easier for me :D
<dustymabe>
<super american centric comment coming> - there is a US holiday on Monday. I assume that neither of you are off because you aren't in the US, but just checking
<cverna>
Yup :)
mnguyen_ has joined #fedora-coreos
mnguyen has quit [Ping timeout: 276 seconds]
crobinso has quit [Remote host closed the connection]
Betal has joined #fedora-coreos
ksinny_ has quit [Remote host closed the connection]
<dustymabe>
does it handle if a new subpackage/dep was added?
<jlebon>
dustymabe: no that one requires --install $URL
<jlebon>
the previous logic also didn't handle that
<dustymabe>
ahh
<dustymabe>
let me just make sure
<dustymabe>
say i'm in a world initially where `kernel-core` subpackage doesn't exist
<dustymabe>
so everything is just in kernel
<dustymabe>
i've got kernel, kernel-modules
<dustymabe>
I `rpm-ostree override replace http://bodhi` and that update is the one where a new `kernel-core` package was created (and is now required)
<dustymabe>
what would happen?
<jlebon>
assuming there's a strong binding between e.g. the newer kernel and the new kernel-core, depsolve will fail
<jlebon>
so you'd need to add `--install $URL_TO_kernel_core`
<jlebon>
i think it's possible to fix this by delaying selecting which packages to install until the very end but would require changing the current approach entirely
<jlebon>
e.g. something like synthesizing a dnf repo in-memory from the koji query
<dustymabe>
yeah I was thinking we download the packages we know we need and then if that doesn't solve everthing we see if the other ones are in bodhi too or something
<jlebon>
but this is at least not worse than what we had before