Skip to content

Commit 24f8667

Browse files
author
Robert Vincent
committed
Add note explaining redoubled backslashes.
1 parent 92b2a7d commit 24f8667

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,16 @@ The password for the given certificate
9191

9292
The location where the file certificate is.
9393
Do not end the string with any forward or backslash.
94+
Note that in puppet manifests, double-backslashes must be re-doubled, even in single-quoted strings, e.g.
95+
96+
```puppet
97+
sslcertificate { "Install-PFX-Certificate from UNC path" :
98+
name => 'mycert.pfx',
99+
password => 'password123',
100+
location => '\\\\StorageServer\Fileshare',
101+
thumbprint => '07E5C1AF7F5223CB975CC29B5455642F5570798B'
102+
}
103+
```
94104

95105
##### `thumbprint`
96106

0 commit comments

Comments
 (0)