texlive[59287] Master/texmf-dist/scripts/texlive: restore

commits+karl at tug.org commits+karl at tug.org
Thu May 20 23:34:36 CEST 2021


Revision: 59287
          http://tug.org/svn/texlive?view=revision&revision=59287
Author:   karl
Date:     2021-05-20 23:34:36 +0200 (Thu, 20 May 2021)
Log Message:
-----------
restore load_config_file placement to pre-r59273, too broken

Revision Links:
--------------
    http://tug.org/svn/texlive?view=revision&revision=59273

Modified Paths:
--------------
    trunk/Master/texmf-dist/scripts/texlive/NEWS
    trunk/Master/texmf-dist/scripts/texlive/tlmgr.pl

Modified: trunk/Master/texmf-dist/scripts/texlive/NEWS
===================================================================
--- trunk/Master/texmf-dist/scripts/texlive/NEWS	2021-05-20 21:18:14 UTC (rev 59286)
+++ trunk/Master/texmf-dist/scripts/texlive/NEWS	2021-05-20 21:34:36 UTC (rev 59287)
@@ -1,7 +1,12 @@
 (This file public domain.  Originally written by Norbert Preining and
 Karl Berry, 2010.)
 
+<p><b>tlmgr 59208 (released 15may21):</b>
+<li>still trying to optimize the ssl multiplexor resolution.
 
+<p><b>tlmgr 59154 (released 10may21):</b>
+<li>more adaptations for https://mirror.ctan.org (and again on 14may21).
+
 <p><b>tlmgr 59108 (released 7may21):</b>
 <li>support, and prefer, curl for https://mirror.ctan.org resolution.
 <li>don't require valid ssl certificates since we can't always support ssl.

Modified: trunk/Master/texmf-dist/scripts/texlive/tlmgr.pl
===================================================================
--- trunk/Master/texmf-dist/scripts/texlive/tlmgr.pl	2021-05-20 21:18:14 UTC (rev 59286)
+++ trunk/Master/texmf-dist/scripts/texlive/tlmgr.pl	2021-05-20 21:34:36 UTC (rev 59287)
@@ -390,9 +390,6 @@
       }
     }
   }
-  
-  # why is this option so special? help ...
-  $opts{"require-verification"} = 0;
 
   # save command line options for later restart, if necessary
   @::SAVEDARGV = @ARGV;
@@ -401,11 +398,6 @@
 
   GetOptions(\%opts, keys(%optarg)) or pod2usage(2);
 
-  # load the config file and set the config options
-  # load it BEFORE starting downloads as we set persistent-downloads there!
-  load_config_file();
-
-
   $::debug_translation = 0;
   $::debug_translation = 1 if $opts{"debug-translation"};
 
@@ -677,6 +669,10 @@
 
   $loadmediasrcerror = "Cannot load TeX Live database from ";
 
+  # load the config file and set the config options
+  # load it BEFORE starting downloads as we set persistent-downloads there!
+  load_config_file();
+
   # in system mode verify that the selected action is allowed
   if (!$opts{"usermode"} && $config{'allowed-actions'}) {
     if (!TeXLive::TLUtils::member($action, @{$config{'allowed-actions'}})) {



More information about the tex-live-commits mailing list.