pl_boot uses tlsv1 instead of sslv3 to retrieve bootmanager code
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Sat, 20 Jun 2015 22:38:10 +0000 (00:38 +0200)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Sat, 20 Jun 2015 22:38:10 +0000 (00:38 +0200)
tlsv1 has been checked to be supported and enabled in f14

initscripts/pl_boot

index eb233aa..20f4491 100755 (executable)
@@ -117,6 +117,8 @@ while : ; do
        /bin/sleep 30
     fi
 
+    # June 2015 : using --tlsv1 instead of sslv3 that should be available
+    # on all myplc from f14 inclusive
     # assemble the curl transaction
     CURL_CMD="/usr/bin/curl \
         --connect-timeout 60 \
@@ -128,7 +130,7 @@ while : ; do
         --form nonce=</tmp/nonce \
         --location \
         --output $UNVERIFIED_SCRIPT \
-        --sslv3  \
+        --tlsv1  \
         --silent \
         --show-error \
         --fail \