summaryrefslogtreecommitdiff
path: root/manifests/daemon/control.pp
blob: 4137c3ed430742a5116dea4c606f5e9ab8fb6c97 (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
# control definition
define tor::daemon::control(
  $port                            = 0,
  $hashed_control_password         = '',
  $cookie_authentication           = 0,
  $cookie_auth_file                = '',
  $cookie_auth_file_group_readable = '',
  $ensure                          = present ) {

  if $cookie_authentication == '0'
    and $hashed_control_password == ''
    and $ensure != 'absent' {
      fail('You need to define the tor control password')
    }

  if $cookie_authentication == 0
    and ($cookie_auth_file != '' or $cookie_auth_file_group_readable != '') {
      notice('You set a tor cookie authentication option, but do not have cookie_authentication on') # lint:ignore:80chars
    }

  concat::fragment { '04.control':
    content => template('tor/torrc.control.erb'),
    order   => 04,
    target  => $tor::daemon::config_file,
  }
}