Exclude libmemcached from base, SOGo needs the version from sogo repository

tags/ipasserelle-repo-0.2.16-1 0.2.12
Daniel Berteaud 11 years ago
parent 52c0cf7bf4
commit 6d5cfcc4dc
  1. 6
      root/etc/e-smith/db/yum_repositories/migrate/12ExcludeBase

@ -0,0 +1,6 @@
{
my $repo = $DB->get("base") or return '';
my @exclude = split /[;,]/, ($repo->prop('Exclude') || '');
push @exclude, 'libmemcached' unless (grep {$_ eq 'libmemcached'} @exclde);
$repo->set_prop('Exclude', join(',', @exclude));
}
Loading…
Cancel
Save