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 | 6babc35ef9c62a48a56ef63945d09e7e06229666 (patch) | |
tree | 27b02d5256c26fb79d051df78a74623cfd7ab99d | |
parent | dcdbd530a6c74ecf09a96067c40be5813dd646c8 (diff) | |
download | samba-6babc35ef9c62a48a56ef63945d09e7e06229666.tar.gz samba-6babc35ef9c62a48a56ef63945d09e7e06229666.tar.xz samba-6babc35ef9c62a48a56ef63945d09e7e06229666.zip |
Grr, the order of these arguments matters
-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 86b5a9ab3dd..3a9080f473b 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)" |