diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-07-01 07:29:23 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-07-01 07:29:23 +0000 |
commit | 95cb68039382687ec9f19f855d27b0918750fb87 (patch) | |
tree | c19b865727599b43230badfa97f0ca97533b7ff1 /testsuite | |
parent | fb5a006c0971694ff4da3601c04f304234d27ae7 (diff) | |
download | samba-95cb68039382687ec9f19f855d27b0918750fb87.tar.gz samba-95cb68039382687ec9f19f855d27b0918750fb87.tar.bz2 samba-95cb68039382687ec9f19f855d27b0918750fb87.zip |
Make smbpasswd use the higher log level for the second run - this should
help us debug failures in smbpasswd.
Andrew Bartlett
(This used to be commit dcdbd530a6c74ecf09a96067c40be5813dd646c8)
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/build_farm/basicsmb.fns | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/build_farm/basicsmb.fns b/testsuite/build_farm/basicsmb.fns index 31e097bd35..86b5a9ab3d 100644 --- a/testsuite/build_farm/basicsmb.fns +++ b/testsuite/build_farm/basicsmb.fns @@ -94,8 +94,8 @@ test_smb_conf_setup() { test_smbpasswd() { test_smbpasswd_password="$1" rm -f $prefix/private/smbpasswd - echo "( echo $test_smbpasswd_password ; echo $test_smbpasswd_password; ) | $prefix/bin/smbpasswd -L -s -a $whoami" - ( echo $test_smbpasswd_password; echo $test_smbpasswd_password; ) | $prefix/bin/smbpasswd -L -s -a $whoami + echo "( echo $test_smbpasswd_password ; echo $test_smbpasswd_password; ) | $prefix/bin/smbpasswd -L -s -a $whoami -D $loglevel" + ( echo $test_smbpasswd_password; echo $test_smbpasswd_password; ) | $prefix/bin/smbpasswd -L -s -a $whoami -D $loglevel status=$? if [ $status = 0 ]; then echo "smbpasswd correctly set initial password ($test_smbpasswd_password)" |