summaryrefslogtreecommitdiff
path: root/manifests/daemon/transport_plugin.pp
blob: 19212824dd5f2db2eced379316fc0455da1e23b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# transport plugin
define tor::daemon::transport_plugin(
  $servertransport_plugin     = '',
  $servertransport_listenaddr = '',
  $servertransport_options    = '',
  $ext_port                   = '' ) {

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