I was imagining a 3-line Python script to do this but the yum Python API is impenetrable. Is this even possible?
Is writing a wrapper for 'yum list package-name' the only way to do this?
|
1
|
|
|
|
|
|
As Seth points out, you can use the updates APIs to ask if something is available as an update. For something that's close to what the "yum list" does you probably want to use the doPackageLists(). Eg.
|
||
|
|
|
|
and there are many examples of the yum api and some guides to getting started with it here: |
||
|
|