--- loncom/lond 2015/01/03 02:34:36 1.513 +++ loncom/lond 2015/01/03 02:43:05 1.514 @@ -2,7 +2,7 @@ # The LearningOnline Network # lond "LON Daemon" Server (port "LOND" 5663) # -# $Id: lond,v 1.513 2015/01/03 02:34:36 raeburn Exp $ +# $Id: lond,v 1.514 2015/01/03 02:43:05 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -61,7 +61,7 @@ my $DEBUG = 0; # Non zero to ena my $status=''; my $lastlog=''; -my $VERSION='$Revision: 1.513 $'; #' stupid emacs +my $VERSION='$Revision: 1.514 $'; #' stupid emacs my $remoteVERSION; my $currenthostid="default"; my $currentdomainid; @@ -6629,7 +6629,7 @@ sub make_new_child { &Authen::Krb5::init_context(); my $no_ets; - if ($dist =~ /^(?:centos|rhes)(\d+)$/) { + if ($dist =~ /^(?:centos|rhes|scientific)(\d+)$/) { if ($1 >= 7) { $no_ets = 1; } @@ -6637,6 +6637,10 @@ sub make_new_child { if (($1 eq '9.3') || ($1 >= 12.2)) { $no_ets = 1; } + } elsif ($dist =~ /^sles(\d+)$/) { + if ($1 > 11) { + $no_ets = 1; + } } elsif ($dist =~ /^fedora(\d+)$/) { if ($1 < 7) { $no_ets = 1;