Diff for /doc/loncapafiles/modify_config_files.piml between versions 1.14 and 1.49

version 1.14, 2011/02/27 18:54:59 version 1.49, 2021/12/21 13:57:46
Line 35  http://www.lon-capa.org/ Line 35  http://www.lon-capa.org/
 <file>  <file>
 <target dist="default">/</target>  <target dist="default">/</target>
 <perlscript mode="fg">  <perlscript mode="fg">
 my $mysqldaemon = 'mysqld';  
 my $configfiles = 'yum and MySQL';  my $configfiles = 'yum and MySQL';
 if ('<DIST />' eq 'suse9.2' || '<DIST />' eq 'suse9.3' || '<DIST />' eq 'sles9' || '<DIST />' eq 'sles10' || '<DIST />' eq 'sles11' || '<DIST />' eq 'suse10.1' || '<DIST />' eq 'suse10.2' || '<DIST />' eq 'suse10.3' || '<DIST />' eq 'suse11.1' || '<DIST />' eq 'suse11.2' || '<DIST />' eq 'suse11.3' || '<DIST />' eq 'suse11.4') {  my $mysqlcmd = '/etc/init.d/mysqld restart';
     $mysqldaemon = 'mysql';  if ('<DIST />' eq 'suse9.2' || '<DIST />' eq 'suse9.3' || '<DIST />' eq 'sles9' || '<DIST />' eq 'sles10' || '<DIST />' eq 'sles11' || '<DIST />' eq 'suse10.1' || '<DIST />' eq 'suse10.2' || '<DIST />' eq 'suse10.3' || '<DIST />' eq 'suse11.1' || '<DIST />' eq 'suse11.2' || '<DIST />' eq 'suse11.3' || '<DIST />' eq 'suse11.4' || '<DIST />' eq 'suse12.1' || '<DIST />' eq 'suse12.2' || '<DIST />' eq 'suse12.3' || '<DIST />' eq 'suse13.1') {
       $mysqlcmd = '/etc/init.d/mysql restart';
       $configfiles = 'MySQL';
   } elsif (('<DIST />' eq 'sles12') || ('<DIST />' eq 'sles15') || ('<DIST />' eq 'suse13.2')) {
       $mysqlcmd = '/bin/systemctl restart mysql.service';
     $configfiles = 'MySQL';      $configfiles = 'MySQL';
 } elsif ('<DIST />' eq 'rhes4') {  } elsif ('<DIST />' eq 'rhes4') {
     $configfiles = 'MySQL';      $configfiles = 'MySQL';
 } elsif ('<DIST />' eq 'debian5' || '<DIST />' eq 'debian6' || '<DIST />' eq 'ubuntu6' || '<DIST />' eq 'ubuntu8' || '<DIST />' eq 'ubuntu10') {  } elsif ('<DIST />' eq 'debian5' || '<DIST />' eq 'debian6' || '<DIST />' eq 'ubuntu6' || '<DIST />' eq 'ubuntu8' || '<DIST />' eq 'ubuntu10'  || '<DIST />' eq 'ubuntu12' || '<DIST />' eq 'ubuntu14' || '<DIST />' eq 'ubuntu16') {
       $configfiles = 'Apt and MySQL';
       $mysqlcmd = 'sudo /etc/init.d/mysql restart';
   } elsif (('<DIST />' eq 'fedora16') || ('<DIST />' eq 'fedora17') ||
            ('<DIST />' eq 'fedora18') || ('<DIST />' eq 'fedora19') ||
            ('<DIST />' eq 'fedora20') || ('<DIST />' eq 'fedora21')) {
       $mysqlcmd = '/bin/systemctl restart mysqld.service';  
   } elsif (('<DIST />' eq 'rhes7')       || ('<DIST />' eq 'centos7')  ||
            ('<DIST />' eq 'scientific7') || ('<DIST />' eq 'fedora22') ||
            ('<DIST />' eq 'fedora23')    || ('<DIST />' eq 'fedora24') ||
            ('<DIST />' eq 'fedora25')    || ('<DIST />' eq 'fedora26') ||
            ('<DIST />' eq 'fedora27')    || ('<DIST />' eq 'fedora28') ||
            ('<DIST />' eq 'fedora29')    || ('<DIST />' eq 'fedora30') ||
            ('<DIST />' eq 'fedora31')    || ('<DIST />' eq 'fedora32') ||
            ('<DIST />' eq 'fedora33')    || ('<DIST />' eq 'fedora34') ||
            ('<DIST />' eq 'fedora35')    || ('<DIST />' eq 'centos8')  || 
            ('<DIST />' eq 'rhes8')       || ('<DIST />' eq 'oracle7')  ||
            ('<DIST />' eq 'oracle8')     || ('<DIST />' eq 'rocky8')   ||
            ('<DIST />' eq 'alma8')       || ('<DIST />' eq 'centos8-stream') ||
            ('<DIST />' eq 'centos9-stream')) {
       $mysqlcmd = '/bin/systemctl restart mariadb.service';
   } elsif (('<DIST />' eq 'ubuntu18') || ('<DIST />' eq 'ubuntu20')) {
     $configfiles = 'Apt and MySQL';      $configfiles = 'Apt and MySQL';
     $mysqldaemon = 'mysql';      $mysqlcmd = 'sudo /bin/systemctl restart mysql.service';
 }  }
   
 print "\nUpdating $configfiles configuration files\n";  print "\nUpdating $configfiles configuration files\n";
 system("/home/httpd/perl/modify_config_files.pl");  system("/home/httpd/perl/modify_config_files.pl");
 my $returnvalue = $?>>8;  my $returnvalue = $?>>8;
 if ($returnvalue == 1) {  if ($returnvalue == 1) {
     ## the /etc/my.cnf file was modified.      ## the /etc/my.cnf file was modified.
     print "**** WARNING: You need to restart MySQL at this time.\n".      print "**** WARNING: You need to restart MySQL at this time.\n".
         "    Use the command \"/etc/init.d/$mysqldaemon restart\"\n";          "    Use the command \"$mysqlcmd\"\n";
 }  }
 </perlscript>  </perlscript>
 </file>  </file>

Removed from v.1.14  
changed lines
  Added in v.1.49


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