summaryrefslogtreecommitdiffstats
path: root/configgen/bin/make-configold.pl
diff options
context:
space:
mode:
Diffstat (limited to 'configgen/bin/make-configold.pl')
-rwxr-xr-xconfiggen/bin/make-configold.pl11
1 files changed, 7 insertions, 4 deletions
diff --git a/configgen/bin/make-configold.pl b/configgen/bin/make-configold.pl
index bbf7322a059..d299d09d3be 100755
--- a/configgen/bin/make-configold.pl
+++ b/configgen/bin/make-configold.pl
@@ -62,14 +62,17 @@ sub findhome {
}
sub findhost {
- $ENV{'PATH'} = $ENV{'VESPA_HOME'} . '/bin:' . $ENV{'PATH'};
my $tmp = $ENV{'VESPA_HOSTNAME'};
+ my $bin = $ENV{'VESPA_HOME'} . "/bin";
if (!defined $tmp) {
- $tmp = `vespa-detect-hostname` or die "Could not detect hostname\n";
+ $tmp = `${bin}/vespa-detect-hostname || hostname -f || hostname || echo "localhost"`;
chomp $tmp;
}
- system("vespa-validate-hostname $tmp");
- ( $? == 0 ) or die "Could not validate hostname\n";
+ my $validate = "${bin}/vespa-validate-hostname";
+ if (-f "${validate}") {
+ system("${validate} $tmp");
+ ( $? == 0 ) or die "Could not validate hostname\n";
+ }
return $tmp;
}