Diff for /doc/install/linux/install.pl between versions 1.21 and 1.32

version 1.21, 2011/07/21 21:28:33 version 1.32, 2014/10/29 20:56:18
Line 195  sub get_distro { Line 195  sub get_distro {
             $distro = 'centos'.$1;              $distro = 'centos'.$1;
             $updatecmd = 'yum install LONCAPA-prerequisites';              $updatecmd = 'yum install LONCAPA-prerequisites';
             $installnow = 'yum -y install LONCAPA-prerequisites';              $installnow = 'yum -y install LONCAPA-prerequisites';
         } elsif ($versionstring =~ /Scientific Linux (SL )?release ([\d.]+) /) {          } elsif ($versionstring =~ /Scientific Linux (?:SL )?release ([\d.]+) /) {
             my $ver = $1;              my $ver = $1;
             $ver =~ s/\.\d+$//;              $ver =~ s/\.\d+$//;
             $distro = 'scientific'.$ver;              $distro = 'scientific'.$ver;
Line 320  sub check_locale { Line 320  sub check_locale {
                       '/etc/sysconfig/language');                        '/etc/sysconfig/language');
         }          }
         $langvar = 'RC_LANG';          $langvar = 'RC_LANG';
       } elsif ($distro =~ /^fedora(\d+)/) {
           if ($1 >= 18) {
               if (!open($fh,"</etc/locale.conf")) {
                   print &mt('Failed to open: [_1], default locale not checked.',
                             '/etc/locale.conf');
               }
           } elsif (!open($fh,"</etc/sysconfig/i18n")) {
               print &mt('Failed to open: [_1], default locale not checked.',
                         '/etc/sysconfig/i18n');
           }
       } elsif ($distro =~ /^(?:rhes|centos|scientific)(\d+)/) {
           if ($1 >= 7) {
               if (!open($fh,"</etc/locale.conf")) {
                   print &mt('Failed to open: [_1], default locale not checked.',
                             '/etc/locale.conf');
               }
           } elsif (!open($fh,"</etc/sysconfig/i18n")) {
               print &mt('Failed to open: [_1], default locale not checked.',
                         '/etc/sysconfig/i18n');
           }
     } else {      } else {
         if (!open($fh,"</etc/sysconfig/i18n")) {          if (!open($fh,"</etc/sysconfig/i18n")) {
             print &mt('Failed to open: [_1], default locale not checked.',              print &mt('Failed to open: [_1], default locale not checked.',
Line 329  sub check_locale { Line 349  sub check_locale {
     my @data = <$fh>;      my @data = <$fh>;
     chomp(@data);      chomp(@data);
     foreach my $item (@data) {      foreach my $item (@data) {
         if ($item =~ /^\Q$langvar\E=\"([^\"]*)\"/) {          if ($item =~ /^\Q$langvar\E=\"?([^\"]*)\"?/) {
             my $default = $1;              my $default = $1;
             if ($default ne 'en_US.UTF-8') {              if ($default ne 'en_US.UTF-8') {
                 if ($distro =~ /^debian/) {                  if ($distro =~ /^debian/) {
                     $command = 'dpkg-reconfigure locales';                      $command = 'locale-gen en_US.UTF-8'."\n".
                                  'update-locale LANG=en_US.UTF-8';
                 } elsif ($distro =~ /^ubuntu/) {                  } elsif ($distro =~ /^ubuntu/) {
                     $command = 'sudo set-language-env -E';                       $command = 'sudo locale-gen en_US.UTF-8'."\n".
                                  'sudo update-locale LANG=en_US.UTF-8';
                 } elsif ($distro =~ /^(suse|sles)/) {                  } elsif ($distro =~ /^(suse|sles)/) {
                     $command = 'yast language';                       $command = 'yast language'; 
                 } else {                  } else {
Line 357  sub check_required { Line 379  sub check_required {
     }      }
     my $gotprereqs = &check_prerequisites($packagecmd,$distro);       my $gotprereqs = &check_prerequisites($packagecmd,$distro); 
     if ($gotprereqs eq '') {      if ($gotprereqs eq '') {
         return ($distro,$gotprereqs);          return ($distro,$gotprereqs,'',$packagecmd,$updatecmd);
     }      }
     my $localecmd = &check_locale($distro);      my $localecmd = &check_locale($distro);
     unless ($localecmd eq '') {      unless ($localecmd eq '') {
Line 405  sub check_required { Line 427  sub check_required {
   
 sub check_mysql_running {  sub check_mysql_running {
     my ($distro) = @_;      my ($distro) = @_;
       my $use_systemctl;
     my $mysqldaemon ='mysqld';      my $mysqldaemon ='mysqld';
     if ($distro =~ /^(suse|sles|debian|ubuntu)/) {      if ($distro =~ /^(suse|sles|debian|ubuntu)/) {
         $mysqldaemon = 'mysql';          $mysqldaemon = 'mysql';
Line 417  sub check_mysql_running { Line 440  sub check_mysql_running {
             $proc_owner = 'mysql';              $proc_owner = 'mysql';
         }          }
     }      }
       if ($distro =~ /^fedora(\d+)/) {
           if ($1 >= 16) {
               $process = 'mysqld';
               $proc_owner = 'mysql';
               $use_systemctl = 1;
           }
       }
       if ($distro =~ /^(?:centos|rhes|scientific)(\d+)/) {
           if ($1 >= 7) {
               $mysqldaemon ='mariadb';
               $process = 'mysqld';
               $proc_owner = 'mysql';
               $use_systemctl = 1;
           }
       }
     if (open(PIPE,"ps -ef |grep $process |grep -v grep 2>&1 |")) {      if (open(PIPE,"ps -ef |grep $process |grep -v grep 2>&1 |")) {
         my $status = <PIPE>;          my $status = <PIPE>;
         close(PIPE);          close(PIPE);
Line 425  sub check_mysql_running { Line 463  sub check_mysql_running {
             print_and_log(&mt('MySQL is running.')."\n");              print_and_log(&mt('MySQL is running.')."\n");
             return 1;              return 1;
         } else {          } else {
             system("/etc/init.d/$mysqldaemon start >/dev/null 2>&1 ");               if ($use_systemctl) {
                   system("/bin/systemctl start $mysqldaemon.service >/dev/null 2>&1 ");
               } else {
                   system("/etc/init.d/$mysqldaemon start >/dev/null 2>&1 ");
               }
             print_and_log(&mt('Waiting for MySQL to start.')."\n");              print_and_log(&mt('Waiting for MySQL to start.')."\n");
             sleep 5;              sleep 5;
             if (open(PIPE,"ps -ef |grep $process |grep -v grep 2>&1 |")) {              if (open(PIPE,"ps -ef |grep $process |grep -v grep 2>&1 |")) {
Line 460  sub check_mysql_running { Line 502  sub check_mysql_running {
   
 sub chkconfig {  sub chkconfig {
     my ($distro,$instdir) = @_;      my ($distro,$instdir) = @_;
     my (%needfix,%tostop);      my (%needfix,%tostop,%uses_systemctl);
     my $checker_bin = '/sbin/chkconfig';      my $checker_bin = '/sbin/chkconfig';
       my $sysctl_bin = '/bin/systemctl';
     my %daemon = (      my %daemon = (
                   mysql     => 'mysqld',                    mysql     => 'mysqld',
                   apache    => 'httpd',                    apache    => 'httpd',
Line 480  sub chkconfig { Line 523  sub chkconfig {
         if ($distro =~ /^(suse|sles)9/) {          if ($distro =~ /^(suse|sles)9/) {
             $daemon{'apache'} = 'apache';              $daemon{'apache'} = 'apache';
         }          }
           if ($distro =~ /^suse(\d+)/) {
               if ($1 > 11) {
                   $uses_systemctl{'apache'} = 1;
               }
           }
     } elsif ($distro =~ /^(?:debian|ubuntu)(\d+)/) {      } elsif ($distro =~ /^(?:debian|ubuntu)(\d+)/) {
         my $version = $1;          my $version = $1;
         @runlevels = qw/2 3 4 5/;          @runlevels = qw/2 3 4 5/;
Line 491  sub chkconfig { Line 539  sub chkconfig {
         if (($distro =~ /^ubuntu/) && ($version <= 8)) {          if (($distro =~ /^ubuntu/) && ($version <= 8)) {
             $daemon{'cups'} = 'cupsys';              $daemon{'cups'} = 'cupsys';
         }          }
       } elsif ($distro =~ /^fedora(\d+)/) {
           my $version = $1;
           if ($version >= 15) {
               $uses_systemctl{'ntp'} = 1;
           }
           if ($version >= 16) {
               $uses_systemctl{'mysql'} = 1;
               $uses_systemctl{'apache'} = 1;
           }
       } elsif ($distro =~ /^(?:centos|rhes|scientific)(\d+)/) {
           my $version = $1;
           if ($version >= 7) {
               $uses_systemctl{'ntp'} = 1;
               $uses_systemctl{'mysql'} = 1;
               $uses_systemctl{'apache'} = 1;
               $daemon{'mysql'} = 'mariadb';
           }
     }      }
       my $nocheck;
     if (! -x $checker_bin) {      if (! -x $checker_bin) {
           if ($uses_systemctl{'mysql'} && $uses_systemctl{'apache'}) {
               if (! -x $sysctl_bin) {
                   $nocheck = 1;       
               }
           } else {
               $nocheck = 1;
           }
       }
       if ($nocheck) {
         print &mt('Could not check runlevel status for MySQL or Apache')."\n";          print &mt('Could not check runlevel status for MySQL or Apache')."\n";
         return;          return;
     }      }
     my $rlstr = join('',@runlevels);      my $rlstr = join('',@runlevels);
     my $nrlstr = join('',@norunlevels);      my $nrlstr = join('',@norunlevels);
   
     foreach my $type ('apache','mysql','ntp','cups','memcached') {      foreach my $type ('apache','mysql','ntp','cups','memcached') {
         my $service = $daemon{$type};          my $service = $daemon{$type};
         if ($type eq 'ntp') {          if ($uses_systemctl{$type}) {
             if ($distro =~ /^(?:fedora)(\d+)/) {              if (!-l "/etc/systemd/system/multi-user.target.wants/$service.service") {
                 my $version = $1;                  $needfix{$type} = "systemctl enable $service.service";
                 if ($version >= 15) {              }
                     if (!-l "/etc/systemd/system/multi-user.target.wants/ntpd.service") {              next;
                         $needfix{$type} = 'systemctl enable ntpd.service';          } else {
               my $command = $checker_bin.' --list '.$service.' 2>/dev/null';
               if ($type eq 'cups') { 
                   if ($distro =~ /^(?:debian|ubuntu)(\d+)/) {
                       my $version = $1;
                       if (($distro =~ /^ubuntu/) && ($version <= 8)) {
                           $command = $checker_bin.' --list cupsys 2>/dev/null';
                     }                      }
                     next;  
                 }                  }
             }              }
         }              my $results = `$command`;
         my $command = $checker_bin.' --list '.$service.' 2>/dev/null';              my $tofix;
         if ($type eq 'cups') {               if ($results eq '') {
             if ($distro =~ /^(?:debian|ubuntu)(\d+)/) {                  if (($type eq 'apache') || ($type eq 'mysql') || ($type eq 'ntp')) {
                 my $version = $1;                      if ($distro  =~ /^(debian|ubuntu)/) {
                 if (($distro =~ /^ubuntu/) && ($version <= 8)) {                          $tofix = "update-rc.d $type defaults";
                     $command = $checker_bin.' --list cupsys 2>/dev/null';                      } else {
                 }                          $tofix = "$checker_bin --add $service\n";
             }  
         }  
         my $results = `$command`;  
         my $tofix;  
         if ($results eq '') {  
             if (($type eq 'apache') || ($type eq 'mysql') || ($type eq 'ntp')) {  
                 if ($distro  =~ /^(debian|ubuntu)/) {  
                     $tofix = "update-rc.d $type defaults";  
                 } else {  
                     $tofix = "$checker_bin --add $service\n";  
                 }  
             }  
         } else {  
             my %curr_runlevels;  
             for (my $rl=0; $rl<=6; $rl++) {  
                 if ($results =~ /$rl:on/) { $curr_runlevels{$rl}++; }  
             }  
             if (($type eq 'apache') || ($type eq 'mysql') || ($type eq 'ntp')) {  
                 my $warning;  
                 foreach my $rl (@runlevels) {  
                     if (!exists($curr_runlevels{$rl})) {  
                         $warning = 1;  
                     }                      }
                 }                  }
                 if ($warning) {              } else {
                     $tofix = "$checker_bin --level $rlstr $service on\n";                  my %curr_runlevels;
                   for (my $rl=0; $rl<=6; $rl++) {
                       if ($results =~ /$rl:on/) { $curr_runlevels{$rl}++; }
                   }
                   if (($type eq 'apache') || ($type eq 'mysql') || ($type eq 'ntp')) {
                       my $warning;
                       foreach my $rl (@runlevels) {
                           if (!exists($curr_runlevels{$rl})) {
                               $warning = 1;
                           }
                       }
                       if ($warning) {
                           $tofix = "$checker_bin --level $rlstr $service on\n";
                       }
                   } elsif (keys(%curr_runlevels) > 0) {
                       $tostop{$type} = 1;
                 }                  }
             } elsif (keys(%curr_runlevels) > 0) {  
                 $tostop{$type} = 1;  
             }              }
         }              if ($tofix) {
         if ($tofix) {                  $needfix{$type} = $tofix;
             $needfix{$type} = $tofix;              }
         }          }
     }      }
     if ($distro =~ /^(suse|sles)([\d\.]+)$/) {      if ($distro =~ /^(suse|sles)([\d\.]+)$/) {
Line 610  sub chkfirewall { Line 682  sub chkfirewall {
 sub chkapache {  sub chkapache {
     my ($distro,$instdir) = @_;      my ($distro,$instdir) = @_;
     my $fixapache = 1;      my $fixapache = 1;
     if ($distro =~ /^(debian|ubuntu)/) {      if ($distro =~ /^(debian|ubuntu)(\d+)$/) {
           my $distname = $1;
           my $version = $2;
         if (!-e "$instdir/debian-ubuntu/loncapa") {          if (!-e "$instdir/debian-ubuntu/loncapa") {
             $fixapache = 0;              $fixapache = 0;
             print &mt('Warning: No LON-CAPA Apache configuration file found for installation check.')."\n";               print &mt('Warning: No LON-CAPA Apache configuration file found for installation check.')."\n"; 
         } elsif ((-e "/etc/apache2/sites-available/loncapa") && (-e "$instdir/debian-ubuntu/loncapa")) {          } else {
             if (open(PIPE, "diff --brief $instdir/debian-ubuntu/loncapa /etc/apache2/sites-available/loncapa |")) {              my $configfile = "/etc/apache2/sites-available/loncapa";
                 my $diffres = <PIPE>;              if (($distname eq 'ubuntu') && ($version > 12)) {
                 close(PIPE);                  $configfile = "/etc/apache2/conf-available/loncapa";
                 chomp($diffres);              }
                 unless ($diffres) {              if (-e $configfile) {
                     $fixapache = 0;                  if (open(PIPE, "diff --brief $instdir/debian-ubuntu/loncapa $configfile |")) {
                       my $diffres = <PIPE>;
                       close(PIPE);
                       chomp($diffres);
                       unless ($diffres) {
                           $fixapache = 0;
                       }
                 }                  }
             }              }
         }          }
Line 666  sub chkapache { Line 746  sub chkapache {
     } else {      } else {
         my $configfile = 'httpd.conf';          my $configfile = 'httpd.conf';
         if ($distro =~ /^(?:centos|rhes|scientific)(\d+)$/) {          if ($distro =~ /^(?:centos|rhes|scientific)(\d+)$/) {
             if ($1 > 5) {              if ($1 >= 7) {
                   $configfile = 'apache2.4/httpd.conf';
               } elsif ($1 > 5) {
                 $configfile = 'new/httpd.conf';                  $configfile = 'new/httpd.conf';
             }              }
         } elsif ($distro =~ /^fedora(\d+)$/) {          } elsif ($distro =~ /^fedora(\d+)$/) {
             if ($1 > 10) {              if ($1 > 17) {
                   $configfile = 'apache2.4/httpd.conf'; 
               } elsif ($1 > 10) {
                 $configfile = 'new/httpd.conf';                  $configfile = 'new/httpd.conf';
             }              }
         }          }
Line 1274  if ($callsub{'apache'}) { Line 1358  if ($callsub{'apache'}) {
     if ($distro =~ /^(suse|sles)/) {      if ($distro =~ /^(suse|sles)/) {
         &copy_apache2_suseconf($instdir);          &copy_apache2_suseconf($instdir);
     } elsif ($distro =~ /^(debian|ubuntu)/) {      } elsif ($distro =~ /^(debian|ubuntu)/) {
         &copy_apache2_debconf($instdir);          &copy_apache2_debconf($instdir,$distro);
     } else {      } else {
         &copy_httpd_conf($instdir,$distro);          &copy_httpd_conf($instdir,$distro);
     }      }
Line 1713  sub copy_httpd_conf { Line 1797  sub copy_httpd_conf {
     my ($instdir,$distro) = @_;      my ($instdir,$distro) = @_;
     my $configfile = 'httpd.conf';      my $configfile = 'httpd.conf';
     if ($distro =~ /^(?:centos|rhes|scientific)(\d+)$/) {      if ($distro =~ /^(?:centos|rhes|scientific)(\d+)$/) {
         if ($1 > 5) {          if ($1 >= 7) {
               $configfile = 'apache2.4/httpd.conf';
           } elsif ($1 > 5) {
             $configfile = 'new/httpd.conf';              $configfile = 'new/httpd.conf';
         }          }
     } elsif ($distro =~ /^fedora(\d+)$/) {      } elsif ($distro =~ /^fedora(\d+)$/) {
         if ($1 > 10) {          if ($1 > 17) {
               $configfile = 'apache2.4/httpd.conf';
           } elsif ($1 > 10) {
             $configfile = 'new/httpd.conf';              $configfile = 'new/httpd.conf';
         }          }
     }      }
Line 1737  sub copy_httpd_conf { Line 1825  sub copy_httpd_conf {
 #########################################################  #########################################################
   
 sub copy_apache2_debconf {  sub copy_apache2_debconf {
     my ($instdir) = @_;      my ($instdir,$distro) = @_;
     print_and_log(&mt('Copying loncapa [_1] config file to [_2] and pointing [_3] to it from sites-enabled.',"'apache2'","'/etc/apache2/sites-available'","'000-default symlink'")."\n");  
     my $apache2_sites_enabled_dir = '/etc/apache2/sites-enabled';  
     my $apache2_sites_available_dir = '/etc/apache2/sites-available';  
     if (-l "$apache2_sites_enabled_dir/000-default") {  
         unlink("$apache2_sites_enabled_dir/000-default");  
     }  
     if (-e "$apache2_sites_available_dir/loncapa") {  
         copy("$apache2_sites_available_dir/loncapa","$apache2_sites_available_dir/loncapa.original");  
     }  
     copy("$instdir/debian-ubuntu/loncapa","$apache2_sites_available_dir/loncapa");  
     chmod(0444,"$apache2_sites_available_dir/loncapa");  
     symlink("$apache2_sites_available_dir/loncapa","$apache2_sites_enabled_dir/000-default");  
     my $apache2_mods_enabled_dir = '/etc/apache2/mods-enabled';      my $apache2_mods_enabled_dir = '/etc/apache2/mods-enabled';
     my $apache2_mods_available_dir = '/etc/apache2/mods-available';      my $apache2_mods_available_dir = '/etc/apache2/mods-available';
     foreach my $module ('headers.load','expires.load') {      foreach my $module ('headers.load','expires.load') {
Line 1758  sub copy_apache2_debconf { Line 1834  sub copy_apache2_debconf {
             print_and_log(&mt('Enabling "[_1]" Apache module.',$module)."\n");              print_and_log(&mt('Enabling "[_1]" Apache module.',$module)."\n");
         }          }
     }      }
       my $apache2_sites_enabled_dir = '/etc/apache2/sites-enabled';
       my $apache2_sites_available_dir = '/etc/apache2/sites-available';
       my $defaultconfig = "$apache2_sites_enabled_dir/000-default";
       my ($distname,$version);
       if ($distro =~ /^(debian|ubuntu)(\d+)$/) {
           $distname = $1;
           $version = $2;
       }
       if (($distname eq 'ubuntu') && ($version > 12)) {
           $defaultconfig = "$apache2_sites_enabled_dir/000-default.conf";
       }
       if (-l $defaultconfig) {
           unlink($defaultconfig);
       }
       if (($distname eq 'ubuntu') && ($version > 12)) {
           print_and_log(&mt('Copying loncapa [_1] config file to [_2] and pointing [_3] to it from conf-enabled.',"'apache2'","'/etc/apache2/conf-available'","'loncapa.conf symlink'")."\n");
           my $apache2_conf_enabled_dir = '/etc/apache2/conf-enabled';
           my $apache2_conf_available_dir = '/etc/apache2/conf-available';
           if (-e "$apache2_conf_available_dir/loncapa") {
               copy("$apache2_conf_available_dir/loncapa","$apache2_conf_available_dir/loncapa.original");
           }
           my $defaultconf = $apache2_conf_available_dir.'/loncapa.conf';
           copy("$instdir/debian-ubuntu/ubuntu14/loncapa_conf","$apache2_conf_available_dir/loncapa");
           chmod(0444,"$apache2_conf_available_dir/loncapa");
           if (-l $defaultconf) {
               unlink($defaultconf);
           }
           symlink("$apache2_conf_available_dir/loncapa","$defaultconf");
           print_and_log(&mt('Copying loncapa [_1] site file to [_2] and pointing [_3] to it from sites-enabled.',"'apache2'","'/etc/apache2/sites-available'","'000-default.conf symlink'")."\n");
           copy("$instdir/debian-ubuntu/ubuntu14/loncapa_site","$apache2_sites_available_dir/loncapa");
           chmod(0444,"$apache2_sites_available_dir/loncapa");
           symlink("$apache2_sites_available_dir/loncapa","$defaultconfig");
       } else {
           print_and_log(&mt('Copying loncapa [_1] config file to [_2] and pointing [_3] to it from sites-enabled.',"'apache2'","'/etc/apache2/sites-available'","'000-default symlink'")."\n");
           if (-e "$apache2_sites_available_dir/loncapa") {
               copy("$apache2_sites_available_dir/loncapa","$apache2_sites_available_dir/loncapa.original");
           }
           copy("$instdir/debian-ubuntu/loncapa","$apache2_sites_available_dir/loncapa");
           chmod(0444,"$apache2_sites_available_dir/loncapa");
           symlink("$apache2_sites_available_dir/loncapa","$apache2_sites_enabled_dir/000-default");
       }
     print_and_log("\n");      print_and_log("\n");
 }  }
   

Removed from v.1.21  
changed lines
  Added in v.1.32


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