Skip to content

Commit

Permalink
Merge pull request #33 from bitnami/bncert-2.0.1
Browse files Browse the repository at this point in the history
[bncert/2.0.1] Fix issues checking .well-known
  • Loading branch information
gongomgra authored Jan 21, 2025
2 parents 76574f9 + 8d061a6 commit eed0926
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0
2.0.1
2 changes: 1 addition & 1 deletion project/base-functions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Copyrighted by BitRock
</createTimeStamp>
<setInstallerVariable name="installer_http_code" value="0"/>
<!-- httpGet can't handle IPv6 connections -->
<runProgram program="curl" programArguments="-L '${url}' -o '${system_temp_directory}/http_get_${timestamp}.txt'" abortOnError="0" showMessageOnError="0"/>
<runProgram program="curl" programArguments="-L -k -s '${url}' -o '${system_temp_directory}/http_get_${timestamp}.txt'" abortOnError="0" showMessageOnError="0"/>
<setInstallerVariable name="valid_url" value="0">
<ruleList>
<compareText text="${installer_http_code}" logic="does_not_equal" value="200"/>
Expand Down
2 changes: 1 addition & 1 deletion project/bncert-letsencrypt-functions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ Please check our documentation and support forums, we'll be happy to help!
<foreach variables="domain" values="${domains}">
<actionList>
<!-- httpGet can't handle IPv6 connections -->
<runProgram abortOnError="0" showMessageOnError="1" program="curl" programArguments="-L 'https://${domain}/.well-known/${tmpFile}' -o '${system_temp_directory}/${tmpFile}'"/>
<runProgram abortOnError="0" showMessageOnError="1" program="curl" programArguments="-L -k -s 'https://${domain}/.well-known/${tmpFile}' -o '${system_temp_directory}/${tmpFile}'"/>
<readFile abortOnError="0" showMessageOnError="0" path="${system_temp_directory}/${tmpFile}" name="result"/>
<actionGroup>
<actionList>
Expand Down

0 comments on commit eed0926

Please sign in to comment.