aboutsummaryrefslogtreecommitdiff
path: root/manifests/polipo/base.pp
blob: 8c1dd1cfb4bca0c57edcf7b64df37c17732ed79f (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'],
  }

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