debmirror doesn't work with Canonical ESM
Bug #1826448 reported by
Danielle Zephyr Malament
This bug affects 3 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
debmirror (Ubuntu) |
Confirmed
|
Undecided
|
Unassigned |
Bug Description
debmirror tries to put Canonical Ubuntu Extended Support repos in the wrong dist (e.g. 'trusty' instead of 'trusty-security', which breaks the paths it looks for on the remote server. This is because there is a check for origin='Ubuntu' but not origin='UbuntuESM'. This diff fixes it:
} elsif ($origin eq "Ubuntu" or $origin eq "Canonical") {
to
} elsif ($origin eq "Ubuntu" or $origin eq "UbuntuESM" or $origin eq "Canonical") {
I was able to reproduce with the latest versions on both Trusty and Bionic.
To post a comment you must log in.
Status changed to 'Confirmed' because the bug affects multiple users.