blob: cb130d9244b313154dbb02f1302c0e849860965f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# socks definition
define tor::daemon::socks(
$port = 0,
$policies = [] ) {
concat::fragment { '02.socks':
content => template('tor/torrc.socks.erb'),
order => 02,
target => $tor::daemon::config_file,
}
}
|