Add the generic funcions file for the basicsmb tests
authorAndrew Bartlett <abartlet@samba.org>
Wed, 27 Jun 2001 07:59:09 +0000 (07:59 +0000)
committerAndrew Bartlett <abartlet@samba.org>
Wed, 27 Jun 2001 07:59:09 +0000 (07:59 +0000)
Andrew Bartlett
(This used to be commit b28baf71a7d947cfe8bda546f4e70194da0781da)

testsuite/build_farm/basicsmb.fns [new file with mode: 0644]

diff --git a/testsuite/build_farm/basicsmb.fns b/testsuite/build_farm/basicsmb.fns
new file mode 100644 (file)
index 0000000..0708e2f
--- /dev/null
@@ -0,0 +1,21 @@
+test_smb_conf_setup() {
+       cat basicsmb.smb.conf.template | sed "s|PREFIX|$prefix|g" | sed "s|BUILD_FARM|$pwd|g" > $prefix/lib/smb.conf
+       echo "Setting up smb.conf:"
+       cat $prefix/lib/smb.conf
+
+       echo "127.0.0.1    localhost">$prefix/lib/lmhosts
+
+}
+
+test_smbpasswd() {
+       echo "( echo $password ; echo $password; ) | $prefix/bin/smbpasswd -L -s -a $whoami"
+       ( echo $password ; echo $password; ) | $prefix/bin/smbpasswd -L -s -a $whoami
+       status=$?
+       if [ $status = 0 ]; then
+           echo "smbpasswd correctly set inital password ($password)"
+       else
+           echo "smbpasswd failed to set inital password ($password)! (status $status)"
+           return 1
+       fi
+       return 0
+}