Diff for /loncom/debugging_tools/modify_config_files.pl between versions 1.12 and 1.13

version 1.12, 2011/05/31 02:55:15 version 1.13, 2017/06/05 21:06:25
Line 37  B<modify_config_files.pl> Line 37  B<modify_config_files.pl>
 =head1 SYNOPSIS  =head1 SYNOPSIS
   
 This script modifies /etc/my.cnf and one of: /etc/yum.conf   This script modifies /etc/my.cnf and one of: /etc/yum.conf 
 (for Fedora/CentOS/Scientific Linux/RHEL5), /etc/apt/sources.list  (for CentOS/Scientific Linux/RHEL >=5), /etc/apt/sources.list
 (for Debian/Ubuntu) and /etc/sysconfig/rhn/sources (for RHEL4).   (for Debian/Ubuntu), /etc/sysconfig/rhn/sources (for RHEL4),
   and /etc/yum.repos.d/loncapa.repo (Fedora >= 21).
   
 =head1 DESCRIPTION  =head1 DESCRIPTION
   
 This script modifies /etc/my.cnf and /etc/yum.conf or /etc/apt/sources  This script modifies /etc/my.cnf, /etc/yum.conf, /etc/yum.repos.d/loncapa.repo,
 or /etc/sysconfig/rhn/sources to ensure certain parameters are set  /etc/apt/sources, or /etc/sysconfig/rhn/sources to ensure certain
 properly.  The LON-CAPA yum repositories are added to /etc/yum.conf or  parameters are set properly.
 /etc/sysconfig/rhn/sources and the LON-CAPA apt repositories are added to   
   The LON-CAPA yum repositories are added to /etc/yum.conf, 
   /etc/yum.repos.d/loncapa.repo, /etc/sysconfig/rhn/sources
   and the LON-CAPA apt repositories are added to 
 /etc/apt/sources.list.  /etc/apt/sources.list.
   
 The /etc/my.cnf file is modified to set the wait_timeout to 1 year.  Backup  The /etc/my.cnf file is modified to set the wait_timeout to 1 year.  Backup
Line 69  my $yum_status; Line 73  my $yum_status;
 my $loninst = 'http://install.loncapa.org';  my $loninst = 'http://install.loncapa.org';
 my $loninst_re = 'http://install\.loncapa\.org';  my $loninst_re = 'http://install\.loncapa\.org';
 if ($dist =~ /^fedora(\d+)$/) {  if ($dist =~ /^fedora(\d+)$/) {
       my $file = '/etc/yum.conf';
     my $ver = $1;      my $ver = $1;
     my $gpgchk = '0';      my $gpgchk = '0';
     my $gpg = "$loninst/versions/fedora/RPM-GPG-KEY-loncapa";       my $gpg = "$loninst/versions/fedora/RPM-GPG-KEY-loncapa"; 
       my $nobackup;
     if ($ver > 6) {      if ($ver > 6) {
         $gpgchk = '1';          $gpgchk = '1';
     }      }
       if ($ver >= 21) {
           $file = '/etc/yum.repos.d/loncapa.repo';
           $nobackup = 1;
       }
     $yum_status =        $yum_status =  
         &update_file('/etc/yum.conf',          &update_file($file,
              [{section => 'loncapa-updates-basearch',               [{section => 'loncapa-updates-basearch',
                key     => 'name=',                 key     => 'name=',
                value   => 'Fedora Core $releasever LON-CAPA $basearch Updates',                 value   => 'Fedora Core $releasever LON-CAPA $basearch Updates',
Line 87  if ($dist =~ /^fedora(\d+)$/) { Line 97  if ($dist =~ /^fedora(\d+)$/) {
                key     => 'gpgcheck=',                 key     => 'gpgcheck=',
                value   =>  $gpgchk,                 value   =>  $gpgchk,
            }, {section => 'loncapa-updates-basearch',             }, {section => 'loncapa-updates-basearch',
                key     => 'gpg=',                 key     => 'gpgkey=',
                value   => $gpg,                 value   => $gpg,
            }, {section => 'loncapa-updates-noarch',             }, {section => 'loncapa-updates-noarch',
                key     => 'name=',                 key     => 'name=',
Line 99  if ($dist =~ /^fedora(\d+)$/) { Line 109  if ($dist =~ /^fedora(\d+)$/) {
                key     => 'gpgcheck=',                 key     => 'gpgcheck=',
                value   => $gpgchk,                 value   => $gpgchk,
            }, {section => 'loncapa-updates-noarch',             }, {section => 'loncapa-updates-noarch',
                key     => 'gpg=',                 key     => 'gpgkey=',
                value   => $gpg,                 value   => $gpg,
            }]);             }],$nobackup);
 } elsif ($dist =~ /^(rhes|centos|scientific)(\d+)$/) {  } elsif ($dist =~ /^(rhes|centos|scientific)(\d+)$/) {
     my $type = $1;      my $type = $1;
     my $ver = $2;      my $ver = $2;
Line 225  exit $exitvalue; Line 235  exit $exitvalue;
   
   
 sub update_file {  sub update_file {
     my ($file,$newdata) = @_;      my ($file,$newdata,$nobackup) = @_;
     return 1 if (! -e $file);      return 1 if (! -e $file);
     my $backup = $file.'.backup';      unless ($nobackup) {
     if (! copy($file,$backup)) {          my $backup = $file.'.backup';
         warn "**** Error: Unable to make backup of $file";          if (! copy($file,$backup)) {
         return 0;              warn "**** Error: Unable to make backup of $file";
               return 0;
           }
     }      }
     my ($filedata) = &parse_config_file($file);      my ($filedata) = &parse_config_file($file);
     if (! ref($filedata)) { warn "**** Error: $filedata"; return 0;}      if (! ref($filedata)) { warn "**** Error: $filedata"; return 0;}

Removed from v.1.12  
changed lines
  Added in v.1.13


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>