LEFT | RIGHT |
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 Loading... |
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 } |
LEFT | RIGHT |