Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: modules/adblockplus/manifests/legacy.pp

Issue 29784619: #11294 - Apply workaround for broken pip package in Debian "jessie" (Closed)
Left Patch Set: Created May 18, 2018, 12:28 a.m.
Right Patch Set: #11294 - Address feedback from codereview Created May 18, 2018, 1:29 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « manifests/site.pp ('k') | modules/private-stub/hiera/base.yaml » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 # == Class: adblockplus::legacy 1 # == Class: adblockplus::legacy
2 # 2 #
3 # A container for migrating obsolete global resources, included with the 3 # A container for migrating obsolete global resources, included with the
4 # adblockplus class. See http://hub.eyeo.com/issues/1541 for more information. 4 # adblockplus class. See http://hub.eyeo.com/issues/1541 for more information.
5 # 5 #
6 class adblockplus::legacy { 6 class adblockplus::legacy {
7 7
8 # Formerly included with class statsclient 8 # Formerly included with class statsclient
9 user {'stats': 9 user {'stats':
10 ensure => 'absent', 10 ensure => 'absent',
(...skipping 22 matching lines...) Expand all
33 } 33 }
34 34
35 # https://github.com/pypa/pip/issues/5247 35 # https://github.com/pypa/pip/issues/5247
36 exec {'/usr/bin/easy_install pip==9.0.3': 36 exec {'/usr/bin/easy_install pip==9.0.3':
37 before => Package['python-pip'], 37 before => Package['python-pip'],
38 creates => '/usr/local/bin/pip', 38 creates => '/usr/local/bin/pip',
39 require => Package['python-setuptools'], 39 require => Package['python-setuptools'],
40 } 40 }
41 } 41 }
42 } 42 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld