summaryrefslogtreecommitdiff
path: root/manifests/polipo.pp
blob: 72a92366dafc0a181dd78ac8604bbabd22afad08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
class tor::polipo inherits tor {

  package { "polipo":
    ensure => installed,
  }

  service { "polipo":
    ensure  => running,
    enable  => true,
    require => [ Package["polipo"], Service["tor"] ],
  }

  file { "/etc/polipo/config":
    ensure  => present,
    owner   => root,
    group   => root,
    mode    => 0644,
    source  => "puppet:///modules/tor/polipo.conf",
    require => Package["polipo"],
    notify  => Service["polipo"],
  }

  # 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.cron",
  }

}