blob: 5a4c0917e2c6d24088fb33aa4a05a27877855eda (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Arbitrary torrc snippet definition
define tor::daemon::snippet(
$content = '' ) {
concat::fragment { "99.snippet.${name}":
content => $content,
order => 99,
target => $tor::daemon::config_file,
}
}
|