Author: jelmer
Date: 2006-06-04 20:36:52 +0000 (Sun, 04 Jun 2006)
New Revision: 16039

WebSVN: 
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=16039

Log:
Add missing #!, don't rely on bash

Modified:
   branches/SAMBA_4_0/source/script/tests/test_cifsdd.sh
   branches/SAMBA_4_0/source/script/tests/test_functions.sh
   branches/SAMBA_4_0/source/script/tests/tests_all.sh
   branches/SAMBA_4_0/source/script/tests/tests_client.sh
   branches/SAMBA_4_0/source/script/tests/tests_quick.sh


Changeset:
Modified: branches/SAMBA_4_0/source/script/tests/test_cifsdd.sh
===================================================================
--- branches/SAMBA_4_0/source/script/tests/test_cifsdd.sh       2006-06-04 
20:20:45 UTC (rev 16038)
+++ branches/SAMBA_4_0/source/script/tests/test_cifsdd.sh       2006-06-04 
20:36:52 UTC (rev 16039)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 # Basic script to make sure that cifsdd can do both local and remote I/O.
 

Modified: branches/SAMBA_4_0/source/script/tests/test_functions.sh
===================================================================
--- branches/SAMBA_4_0/source/script/tests/test_functions.sh    2006-06-04 
20:20:45 UTC (rev 16038)
+++ branches/SAMBA_4_0/source/script/tests/test_functions.sh    2006-06-04 
20:36:52 UTC (rev 16039)
@@ -1,3 +1,4 @@
+#!/bin/sh
 smbd_check_or_start() {
        if [ -n "$SMBD_TEST_FIFO" ];then
                if [ -p "$SMBD_TEST_FIFO" ];then

Modified: branches/SAMBA_4_0/source/script/tests/tests_all.sh
===================================================================
--- branches/SAMBA_4_0/source/script/tests/tests_all.sh 2006-06-04 20:20:45 UTC 
(rev 16038)
+++ branches/SAMBA_4_0/source/script/tests/tests_all.sh 2006-06-04 20:36:52 UTC 
(rev 16039)
@@ -1,3 +1,4 @@
+#!/bin/sh
  $SRCDIR/script/tests/test_ejs.sh $DOMAIN $USERNAME $PASSWORD || failed=`expr 
$failed + $?`
  $SRCDIR/script/tests/test_ldap.sh $SERVER $USERNAME $PASSWORD || failed=`expr 
$failed + $?`
  $SRCDIR/script/tests/test_nbt.sh $SERVER || failed=`expr $failed + $?`

Modified: branches/SAMBA_4_0/source/script/tests/tests_client.sh
===================================================================
--- branches/SAMBA_4_0/source/script/tests/tests_client.sh      2006-06-04 
20:20:45 UTC (rev 16038)
+++ branches/SAMBA_4_0/source/script/tests/tests_client.sh      2006-06-04 
20:36:52 UTC (rev 16039)
@@ -1,2 +1,3 @@
+#!/bin/sh
  $SRCDIR/script/tests/test_smbclient.sh $SERVER $USERNAME $PASSWORD $DOMAIN 
$PREFIX || failed=`expr $failed + $?`
  $SRCDIR/script/tests/test_cifsdd.sh $SERVER $USERNAME $PASSWORD $DOMAIN || 
failed=`expr $failed + $?`

Modified: branches/SAMBA_4_0/source/script/tests/tests_quick.sh
===================================================================
--- branches/SAMBA_4_0/source/script/tests/tests_quick.sh       2006-06-04 
20:20:45 UTC (rev 16038)
+++ branches/SAMBA_4_0/source/script/tests/tests_quick.sh       2006-06-04 
20:36:52 UTC (rev 16039)
@@ -1,3 +1,4 @@
+#!/bin/sh
 TORTURE_OPTIONS="$TORTURE_OPTIONS --option=torture:quick=yes"
 export TORTURE_OPTIONS
 TORTURE_QUICK="yes"

Reply via email to