1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

r7939: fix default hostname in provision

(This used to be commit 79d174005e3508745ea8b0bda2321abd184bf68b)
This commit is contained in:
Andrew Tridgell 2005-06-27 05:28:09 +00:00 committed by Gerald (Jerry) Carter
parent e1e95277c0
commit a6b242639d

View File

@ -4,7 +4,7 @@ use strict;
use Socket;
use Getopt::Long;
my $opt_hostname = `hostname`;
my $opt_hostname = `hostname | cut -d. -f1`;
chomp $opt_hostname;
my $opt_hostip;
my $opt_realm;