Good lord, I hope that's not the general solution on solaris 8.
That would produce a result of:
foo.ucsc.edu.ucsc.edu
(as the hostname returned by "hostname" is already fully qualified on
our systems, both because it SHOULD BE, and because MIT kerberos
wants/needs it to be)
or
foo.ucsc.ed
Thanks!
I actually got this to fix it as well:
open HOSTNAME, "<", "/etc/hostname.hme0" or warn;
open DOMAINNAME, "<", "/etc/defaultdomain" or warn;
my $tmp = . '.' . ;
-john
At 2:17 PM -0400 10/6/06, Rosenbaum, Larry M.
In Long.pm, go to line 91 and change this
my $tmp = `hostname` . '.' . `domainname`;
to this
my $tmph = `hostname`;
my $tmpd = `domainname`;
my $tmp = "$tmph.$tmpd";
> -Original Message-
> From: John Goubeaux [mailto:[EMAIL PROTECTED]
> Posted At: Friday, October 06,