Skip to content

Commit 40abc09

Browse files
authored
Comment addition
1 parent 440794d commit 40abc09

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/puppet/provider/pspackageprovider/windowspowershell.rb

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
def self.invoke_ps_command(command)
66
result = powershell(['-NoProfile', '-ExecutionPolicy', 'Bypass', '-NonInteractive', '-NoLogo', '-Command',
7+
# The following section of the -Command forces powershell to use tls1.2 (which it does not by default currently unless set system wide): [Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12
8+
# Without tls1.2 you cannot install modules from PSGallery
79
"$ProgressPreference = 'SilentlyContinue'; $ErrorActionPreference = 'Stop'; [Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12; #{command}"])
810
result.lines
911
end

0 commit comments

Comments
 (0)