diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-07-01 09:27:02 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-07-01 09:27:02 +0000 |
commit | 7c23573a5016f65ac0ea8049a158a4a8cefa4814 (patch) | |
tree | 65cc633f28823338ddf4ee242dad2a99f2159d81 /testsuite | |
parent | 95cb68039382687ec9f19f855d27b0918750fb87 (diff) | |
download | samba-7c23573a5016f65ac0ea8049a158a4a8cefa4814.tar.gz samba-7c23573a5016f65ac0ea8049a158a4a8cefa4814.tar.bz2 samba-7c23573a5016f65ac0ea8049a158a4a8cefa4814.zip |
Grr, the order of these arguments matters
(This used to be commit 6babc35ef9c62a48a56ef63945d09e7e06229666)
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 86b5a9ab3d..3a9080f473 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 -D $loglevel" - ( echo $test_smbpasswd_password; echo $test_smbpasswd_password; ) | $prefix/bin/smbpasswd -L -s -a $whoami -D $loglevel + echo "( echo $test_smbpasswd_password ; echo $test_smbpasswd_password; ) | $prefix/bin/smbpasswd -L -D $loglevel -s -a $whoami" + ( echo $test_smbpasswd_password; echo $test_smbpasswd_password; ) | $prefix/bin/smbpasswd -L -D $loglevel -s -a $whoami status=$? if [ $status = 0 ]; then echo "smbpasswd correctly set initial password ($test_smbpasswd_password)" |