Apt pinning está fixando todas as fontes

3

Eu instalei um PPA, ondrej / php5, para poder instalar o PHP 5.5 em um servidor Ubuntu 12.04. No entanto, quero instalar o Apache 2.2 e o PPA acima fornece o Apache 2.4.

Eu criei o arquivo /etc/apt/preferences.d/apache2 :

Package: *apache*
Pin: release o=LP-PPA-ondrej-php5
Pin-Priority: -100

Linhas relevantes de apt-cache policy :

 500 http://ppa.launchpad.net/ondrej/php5/ubuntu/ precise/main i386 Packages
     release v=12.04,o=LP-PPA-ondrej-php5,a=precise,n=precise,l=PPA for PHP5,c=main
     origin ppa.launchpad.net
 500 http://ppa.launchpad.net/ondrej/php5/ubuntu/ precise/main amd64 Packages
     release v=12.04,o=LP-PPA-ondrej-php5,a=precise,n=precise,l=PPA for PHP5,c=main
     origin ppa.launchpad.net

Depois de criar o arquivo, aqui está o resultado de apt-cache policy apache2 :

apache2:
  Installed: (none)
  Candidate: (none)
  Package pin: 2.4.6-3+debphp.org~precise+1
  Version table:
     2.4.6-3+debphp.org~precise+1 -100
        500 http://ppa.launchpad.net/ondrej/php5/ubuntu/ precise/main amd64 Packages
        100 /var/lib/dpkg/status
     2.2.22-1ubuntu1.4 -100
        500 http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ precise-updates/main amd64 Packages
        500 http://security.ubuntu.com/ubuntu/ precise-security/main amd64 Packages
     2.2.22-1ubuntu1 -100
        500 http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages

Por que os repositórios oficiais do Ubuntu estão recebendo prioridade de -100 ?

    
por Brandon Wamboldt 30.01.2014 / 14:05

1 resposta

0

Aumente a prioridade do pacote nos repositórios do Ubuntu:

  1. Edite o /etc/apt/preferences.d/apache2

    sudo nano /etc/apt/preferences.d/apache2
    
  2. Adicione a seguinte configuração

    Package: *apache2*
    Pin: release o=ubuntu
    Pin-Priority: 1000
    
  3. Verifique

    % apt-cache policy apache2                
    apache2:
      Installed: 2.4.12-2ubuntu2
      Candidate: 2.4.12-2ubuntu2
      Package pin: 2.4.12-2ubuntu2
      Version table:
         2.4.16-4+deb.sury.org~wily+4 1000
            500 http://ppa.launchpad.net/ondrej/php5/ubuntu/ wily/main i386 Packages
     *** 2.4.12-2ubuntu2 1000
            500 http://archive.ubuntu.com/ubuntu/ wily/main i386 Packages
            100 /var/lib/dpkg/status
    
por A.B. 12.11.2015 / 11:56

Tags