diff options
author | Davide Brini <dave_br@gmx.com> | 2010-04-22 09:50:31 +0200 |
---|---|---|
committer | David Sommerseth <dazo@users.sourceforge.net> | 2010-04-27 23:07:38 +0200 |
commit | f0875cf2b6e27654d06a80f63488ec488f507b5a (patch) | |
tree | 827243ea56d66e08f40aa70572d1aada096f53a3 | |
parent | Enhance contrib/pull-resolv-conf/client.{up,down} scripts (diff) | |
download | openvpn-f0875cf2b6e27654d06a80f63488ec488f507b5a.tar.xz |
Fix missing /bin/bash -> /bin/sh
In commit a9c9a89e96dc1e4e843e05ecadc4349b81606b06 the
client.{up,down} scripts where overhauled and bashism was removed.
During that process, a #! change was missing.
Signed-off-by: Davide Brini <dave_br@gmx.com>
Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
Acked-by: David Sommerseth <dazo@users.sourceforge.net>
-rw-r--r-- | contrib/pull-resolv-conf/client.down | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pull-resolv-conf/client.down b/contrib/pull-resolv-conf/client.down index 8fc0120..db97c10 100644 --- a/contrib/pull-resolv-conf/client.down +++ b/contrib/pull-resolv-conf/client.down @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # Copyright (c) 2005-2009 OpenVPN Technologies, Inc. # Licensed under the GPL version 2 |