Page MenuHomePhabricator

Make certain that jessie-backports is disabled fleetwide.
Closed, DeclinedPublic

Description

Jessie's d-i install defaulted to it being enabled until around the rc2->rc3 transition (cf. Debian #764982) so part of the fleet has it enabled.

Event Timeline

coren raised the priority of this task from to Medium.
coren updated the task description. (Show Details)
coren removed a project: Cloud-Services.
coren set Security to None.
coren added subscribers: scfc, faidon, MoritzMuehlenhoff and 4 others.
coren removed subscribers: yuvipanda, Matanya, scfc.

::apt now always injects jessie-backports. That has been done on Nov. 11th by https://gerrit.wikimedia.org/r/#/c/252202/ c3888dcbe6e78c53c3f59bbb62e221d2f0fac1d8

apt: enable backports on Debian systems

This enables backports across the fleet and relies on the default Debian
policy for the apt priority for the repository (i.e.
NotAutomatic/ButAutomaticUpgrades).
Suffice to say, packages from jessie-backports should be used with care,
as they may change to a newer version at any point.

The task was T107507: Investigate whether to use Debian's jessie-backports and now ::apt has:

# enable backports for Debian systems
if $::operatingsystem == 'Debian' {
    apt::repository { 'debian-backports':
        uri         => 'http://mirrors.wikimedia.org/debian',
        dist        => "${::lsbdistcodename}-backports",
        components  => 'main non-free contrib',
        comment_old => true,
    }
}

So I guess this task is obsolete.

faidon claimed this task.

Indeed.