summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/build_farm/basicsmb.fns21
1 files changed, 21 insertions, 0 deletions
diff --git a/testsuite/build_farm/basicsmb.fns b/testsuite/build_farm/basicsmb.fns
new file mode 100644
index 0000000000..0708e2f89a
--- /dev/null
+++ b/testsuite/build_farm/basicsmb.fns
@@ -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
+}