Skip to content

Commit

Permalink
Fixes in client RPM list for SL5
Browse files Browse the repository at this point in the history
  • Loading branch information
jouvin committed Mar 26, 2014
1 parent f74ad9d commit b80f4c1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion quattor/client/rpms.pan
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,16 @@ variable AII_OSINSTALL_EXTRAPKGS ?= list(

'/software/packages' = {
# Part of the OS, installed by Anaconda as part of the base packages
SELF[escape('yum-plugin-priorities')] = nlist();
if ( is_defined(OS_VERSION_PARAMS['majorversion']) && (OS_VERSION_PARAMS['majorversion'] == '5') ) {
SELF[escape('yum-priorities')] = nlist();
} else {
SELF[escape('yum-plugin-priorities')] = nlist();
};
SELF[escape('yum-plugin-versionlock')] = nlist();
SELF[escape('perl-AppConfig')] = nlist();
if ( OS_VERSION_PARAMS['majorversion'] == '5' ) {
SELF[escape('python-elementtree')] = nlist();
};
if ( AII_V2_INSTALL ) {
# Yum
# Quattor
Expand Down

0 comments on commit b80f4c1

Please sign in to comment.