From: Andrew Tridgell Date: Thu, 14 Jul 2005 09:51:49 +0000 (+0000) Subject: r8459: move to the more portable script execution method X-Git-Url: http://git.samba.org/samba.git/?p=jra%2Fsamba%2F.git;a=commitdiff_plain;h=8858542b2691e26e1dfea60b4d1073a81df92fc5 r8459: move to the more portable script execution method (This used to be commit d7e4dcaaaa37c4992f763e37ca2d655e4d267283) --- diff --git a/source4/setup/newuser b/source4/setup/newuser index 1a6fbdde277..5c426e38488 100755 --- a/source4/setup/newuser +++ b/source4/setup/newuser @@ -1,4 +1,5 @@ -#!/usr/bin/env smbscript +#!/bin/sh +exec smbscript "$0" ${1+"$@"} /* add a new user to a Samba4 server Copyright Andrew Tridgell 2005 diff --git a/source4/setup/provision b/source4/setup/provision index c516b97f2dc..7cd05538b55 100755 --- a/source4/setup/provision +++ b/source4/setup/provision @@ -1,4 +1,5 @@ -#!/usr/bin/env smbscript +#!/bin/sh +exec smbscript "$0" ${1+"$@"} /* provision a Samba4 server Copyright Andrew Tridgell 2005