aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2012-08-03 15:00:32 -0400
committerMicah Anderson <micah@riseup.net>2012-08-03 15:00:32 -0400
commit1591ee0c75565a0109ce4615f78e2bef444e1491 (patch)
tree98500ffd28115b988af442eab5ddcbef0bfce384 /manifests
parent5a1f664b66f62d2f75fb8ea8cee730aaf9097e84 (diff)
downloadpuppet-tor-1591ee0c75565a0109ce4615f78e2bef444e1491.tar.gz
puppet-tor-1591ee0c75565a0109ce4615f78e2bef444e1491.tar.bz2
add $cookie_authentication, $cookie_auth_file and $cookie_auth_file_group_readable variables
Diffstat (limited to 'manifests')
-rw-r--r--manifests/daemon.pp13
1 files changed, 10 insertions, 3 deletions
diff --git a/manifests/daemon.pp b/manifests/daemon.pp
index 5150c96..8f6d80d 100644
--- a/manifests/daemon.pp
+++ b/manifests/daemon.pp
@@ -123,13 +123,20 @@ class tor::daemon inherits tor {
}
# control definition
- define control( $port = 0,
- $hashed_control_password = '',
+ define control( $port = 0,
+ $hashed_control_password = '',
+ $cookie_authentication = 0,
+ $cookie_auth_file = '',
+ $cookie_auth_file_group_readable = '',
$ensure = present ) {
- if $hashed_control_password == '' and $ensure != 'absent' {
+ 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")
+ }
concatenated_file_part { '04.control':
dir => $tor::daemon::snippet_dir,