diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-05-01 03:30:04 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:51:55 -0500 |
commit | 0f50e7b812555222484fecb859c338f89f8dcc03 (patch) | |
tree | 0508eba7f495c7e0d0fcf004b83906ba79c17fdf /source4/selftest/Samba4.pm | |
parent | 614cb1e9dbd2a46b1c684a1179710a66cc6591e8 (diff) | |
download | samba-0f50e7b812555222484fecb859c338f89f8dcc03.tar.gz samba-0f50e7b812555222484fecb859c338f89f8dcc03.tar.bz2 samba-0f50e7b812555222484fecb859c338f89f8dcc03.zip |
r22625: hopefully fix make test on solaris
metze
(This used to be commit 32c805919faaeeaa0bfd0ede775c7f077bc89cd0)
Diffstat (limited to 'source4/selftest/Samba4.pm')
-rw-r--r-- | source4/selftest/Samba4.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/selftest/Samba4.pm b/source4/selftest/Samba4.pm index 23476754ce..23d6c4e0e2 100644 --- a/source4/selftest/Samba4.pm +++ b/source4/selftest/Samba4.pm @@ -599,7 +599,7 @@ sub provision($$$$$$) die("Failed to create a valid smb.conf configuration!"); } - (system("($self->{bindir}/testparm $configuration -v --suppress-prompt --parameter-name=\"netbios name\" --section-name=global 2> /dev/null | grep -i ^$netbiosname ) >/dev/null 2>&1") == 0) or die("Failed to create a valid smb.conf configuration!"); + (system("($self->{bindir}/testparm $configuration -v --suppress-prompt --parameter-name=\"netbios name\" --section-name=global 2> /dev/null | grep -i \"^$netbiosname\" ) >/dev/null 2>&1") == 0) or die("Failed to create a valid smb.conf configuration!"); my @provision_options = ($configuration); push (@provision_options, "--host-name=$netbiosname"); |