aboutsummaryrefslogtreecommitdiff
path: root/manifests/polipo/debian.pp
blob: e39f6039266e99fdd270cc6a8a1ce08e2c321f62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# manage polipo on debian
class tor::polipo::debian inherits tor::polipo::base {
  # TODO: restore file to original state after the following bug is solved:
  # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=580434
  file { '/etc/cron.daily/polipo':
    ensure  => present,
    owner   => root,
    group   => root,
    mode    => '0755',
    require => Package['polipo'],
    source  => 'puppet:///modules/tor/polipo/polipo.cron',
  }
}