Diff for /doc/install/linux/install.pl between versions 1.18 and 1.19

version 1.18, 2011/05/31 03:06:20 version 1.19, 2011/05/31 13:29:46
Line 500  sub chkconfig { Line 500  sub chkconfig {
     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 ($distro =~ /^(?:fedora)(\d+)/) {
                   my $version = $1;
                   if ($version >= 15) {
                       if (!-l "/etc/systemd/system/multi-user.target.wants/ntpd.service") {
                           $needfix{$type} = 'systemctl enable ntpd.service';
                       }
                       next;
                   }
               }
           }
         my $command = $checker_bin.' --list '.$service.' 2>/dev/null';          my $command = $checker_bin.' --list '.$service.' 2>/dev/null';
         if ($type eq 'cups') {           if ($type eq 'cups') { 
             if ($distro =~ /^(?:debian|ubuntu)(\d+)/) {              if ($distro =~ /^(?:debian|ubuntu)(\d+)/) {

Removed from v.1.18  
changed lines
  Added in v.1.19


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