From 24f8667edd5d91977c0baff736f3ae8b909cbc7a Mon Sep 17 00:00:00 2001 From: Robert Vincent Date: Tue, 31 Dec 2019 10:24:43 -0500 Subject: [PATCH] Add note explaining redoubled backslashes. --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 10a1e27..2861a52 100644 --- a/README.md +++ b/README.md @@ -91,6 +91,16 @@ The password for the given certificate The location where the file certificate is. Do not end the string with any forward or backslash. +Note that in puppet manifests, double-backslashes must be re-doubled, even in single-quoted strings, e.g. + +```puppet + sslcertificate { "Install-PFX-Certificate from UNC path" : + name => 'mycert.pfx', + password => 'password123', + location => '\\\\StorageServer\Fileshare', + thumbprint => '07E5C1AF7F5223CB975CC29B5455642F5570798B' + } +``` ##### `thumbprint`