1 / 6

Client-side checking of package dependencies

Client-side checking of package dependencies. Stephen Childs Trinity College Dublin & Grid-Ireland 6 th quattor workshop 28 th September 2008. Introduction. RPM dependency hell first addressed 2 nd quattor workshop , 2005! The problem Add a package to a machine template

nuwa
Download Presentation

Client-side checking of package dependencies

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Client-side checking ofpackage dependencies Stephen Childs Trinity College Dublin & Grid-Ireland 6th quattor workshop 28th September 2008

  2. Introduction RPM dependency hell first addressed 2nd quattor workshop, 2005! The problem Add a package to a machine template Compiles OK, deploys OK Some time later (5 mins if you have monitoring, maybe weeks if not!) you notice that SPMA failed as the package has unfulfilled dependencies And so almost no quattor components run ... The problem of finding a solution Original investigator (SDW) tried a few things: Dummy install: too slow; run YUM and parse output: different archs broke it To make it efficient you need the package metadata, which is not normally available on the machine where you’re compiling When you start to write code, you realise you’re rewriting YUM: So the solution is to use YUM (let’s try again)! 6th quattor workshop, NIKHEF, Amsterdam, October 2008 2

  3. checkdeps Very simple concept: Parse XML profile and extract list of packages and list of repositories Create YUM repository config files for each repository in profile Instruct YUM to use only the repositories in the profile Instruct YUM to use checkdeps configuration (not system YUM config) Create transaction set for YUM that includes all packages in profile Now here’s the nasty bit: Set YUM output to debug and redirect to temp file Call YUM function resolveDeps() Parse output from YUM to determine whether it needed to add packages 6th quattor workshop, NIKHEF, Amsterdam, October 2008 3

  4. How checkdeps works Very simple concept: Parse XML profile and extract list of packages and list of repositories Create YUM repository config files for each repository in profile Instruct YUM to use only the repositories in the profile Instruct YUM to use checkdeps configuration (not system YUM config) Create transaction set for YUM that includes all packages in profile Now here’s the nasty bit: Set YUM output to debug and redirect to temp file Call YUM function resolveDeps() Parse output from YUM to determine whether it needed to add packages 6th quattor workshop, NIKHEF, Amsterdam, October 2008 4

  5. checkdeps usage First you need to create YUM repositories on the server Requires up to date version of createrepo (only for >=SL5) If your profile’s OK you get this: [childss@frascati checkdeps]$ ./checkdeps.py -x gridgate.cs.tcd.ie.xml \-c yum.quattor.conf -r ~/yumroot/ -g checkdeps: Reading package list from target file gridgate.cs.tcd.ie.xml checkdeps: Adding 1007 packages to install list checkdeps: Calling YUM to check dependencies for package list checkdeps: YUM didn't need to add any packages, profile seems OK. If it’s not OK you get this: [childss@frascati checkdeps]$ ./checkdeps.py \ -x gridgate.cs.tcd.ie.broken.xml -c yum.quattor.conf -r ~/yumroot/ -g checkdeps: Reading package list from target file gridgate.cs.tcd.ie.broken.xml checkdeps: Adding 1006 packages to install list checkdeps: Calling YUM to check dependencies for package list YUM wants to add 1 new packages that are missing from profile: Package Version Needed by =========================================================================== glite-security-voms-admin-interface 1.0.5-1.noarch lcg-CE_torque 6th quattor workshop, NIKHEF, Amsterdam, October 2008 5

  6. checkdeps issues When it works it’s great! Takes less than a minute to run Easy to set up on client and server Reflects repositories defined in profile Normally gives accurate results It is quite hard to get working Reliance on parsing YUM output makes it version-sensitive Current version requires up-to-date createrepo on server (needs SL5+) Even when everything’s up to date, can give misleading results ... Conclusion We’re almost there – this is definitely the way to go Parsing YUM output really doesn’t work reliably should consider adding “determineDeps” function to YUM that returns list of extra packages as proper Python data-structure 6th quattor workshop, NIKHEF, Amsterdam, October 2008 6

More Related