summaryrefslogtreecommitdiff
path: root/manifests/polipo/base.pp
blob: a6349204f132bd31792cff4f1389d3f13933c723 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class tor::polipo::base {
  package{'polipo':
    ensure => present,
  }

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

  service { "polipo":
    ensure  => running,
    enable  => true,
  }
}