We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12a8b4e commit 92b3989Copy full SHA for 92b3989
manifests/client.pp
@@ -10,7 +10,8 @@
10
$proto = 'udp',
11
$dev = 'tun',
12
$ca = 'ca.crt',
13
- $cert = $name,
+ $cert = "$name.crt",
14
+ $key = "$name.key",
15
$ns_cert_type = 'server',
16
$verb = 3,
17
$cipher = 'AES-192-CBC',
templates/client.conf.erb
@@ -7,8 +7,8 @@ nobind
7
persist-key
8
persist-tun
9
ca <%= @ca %>
-cert <%= @cert %>.crt
-key <%= @cert %>.key
+cert <%= @cert %>
+key <%= @key %>
<% if @tls_auth_key -%>
tls-auth <%= @tls_auth_key %> 1
<% end -%>
0 commit comments