summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2009-10-02 19:06:13 -0400
committerMicah Anderson <micah@riseup.net>2009-10-02 19:06:13 -0400
commit889128009577f3c588d954054edd4acb1cab3a44 (patch)
treec858c5c185774d006f8652317124f14a663e5188 /templates
parentce6a688e30db5e1833a14cadb7d4709a15964b08 (diff)
switch parameters to lowercase, seems to be a puppet restriction
Diffstat (limited to 'templates')
-rw-r--r--templates/client.conf.erb10
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/client.conf.erb b/templates/client.conf.erb
index 579d537..13bfef7 100644
--- a/templates/client.conf.erb
+++ b/templates/client.conf.erb
@@ -25,7 +25,7 @@ end -%>
end
end -%>
-<%- %w{EGD engine engineCtrl RNDbytes RNDfile RNDoverwrite}.each do |v|
+<%- %w{egd engine enginectrl rndbytes rndfile rndoverwrite}.each do |v|
if has_variable?(v) and instance_variable_get("@#{v}").to_s != "false" -%>
<%= v + " = " + instance_variable_get("@#{v}").to_s %>
<%-
@@ -34,10 +34,10 @@ end -%>
; Service-level configuration
<%= '[' + name + ']' %>
-<%- %w{accept CApath CAfile cert ciphers connect CRLpath CRLfile delay engineNum exec
- execargs failover ident key local OSCP OCSPflag options protocol protocolAuthentication
- protocolHost protocolPassword protocolUsername pty retry session sslVersion stack
- TIMEOUTbusy TIMEOUTclose TIMEOUTconnect TIMEOUTidle transparent verify}.each do |v|
+<%- %w{accept capath cafile cert ciphers connect crlpath crlfile delay enginenum exec
+ execargs failover ident key local oscp ocspflag options protocol protocolauthentication
+ protocolhost protocolpassword protocolusername pty retry session sslversion stack
+ timeoutbusy timeoutclose timeoutconnect timeoutidle transparent verify}.each do |v|
if has_variable?(v) and instance_variable_get("@#{v}").to_s != "false" -%>
<%= v + ' = ' + instance_variable_get("@#{v}").to_s %>
<%-