summaryrefslogtreecommitdiffstats
path: root/scripts/oe-git-proxy
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2016-12-09 17:40:10 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-12-13 22:55:21 +0000
commit0ebe2e64bae6dc554b771d40dc539e5d0dd96060 (patch)
treedcd40cb479a7d17ca3d14aa5cdf07446f2839b32 /scripts/oe-git-proxy
parentca916f279ffdf37d38d1f75a90c9ecb44ec8e6e8 (diff)
downloadpoky-0ebe2e64bae6dc554b771d40dc539e5d0dd96060.tar.gz
oe-git-proxy: create usage output
Created usage output for oe-git-proxy script. [YOCTO #10751] (From OE-Core rev: ec0fdb5e896fc20dbafcc8ae507b17c011dc56fd) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-git-proxy')
-rwxr-xr-xscripts/oe-git-proxy21
1 files changed, 21 insertions, 0 deletions
diff --git a/scripts/oe-git-proxy b/scripts/oe-git-proxy
index 0078e95450..7a43fe6a6e 100755
--- a/scripts/oe-git-proxy
+++ b/scripts/oe-git-proxy
@@ -18,6 +18,27 @@
18# AUTHORS 18# AUTHORS
19# Darren Hart <dvhart@linux.intel.com> 19# Darren Hart <dvhart@linux.intel.com>
20 20
21if [ $# -lt 2 -o "$1" = '--help' -o "$1" = '-h' ] ; then
22 echo 'oe-git-proxy: error: the following arguments are required: host port'
23 echo 'Usage: oe-git-proxy host port'
24 echo ''
25 echo 'OpenEmbedded git-proxy - a simple tool to be used via GIT_PROXY_COMMAND.'
26 echo 'It uses socat to make SOCKS or HTTPS proxy connections.'
27 echo 'It uses ALL_PROXY to determine the proxy server, protocol, and port.'
28 echo 'It uses NO_PROXY to skip using the proxy for a comma delimited list'
29 echo 'of hosts, host globs (*.example.com), IPs, or CIDR masks (192.168.1.0/24).'
30 echo 'It is known to work with both bash and dash shells.runs native tools'
31 echo ''
32 echo 'arguments:'
33 echo ' host proxy host to use'
34 echo ' port proxy port to use'
35 echo ''
36 echo 'options:'
37 echo ' -h, --help show this help message and exit'
38 echo ''
39 exit 2
40fi
41
21# Locate the netcat binary 42# Locate the netcat binary
22SOCAT=$(which socat 2>/dev/null) 43SOCAT=$(which socat 2>/dev/null)
23if [ $? -ne 0 ]; then 44if [ $? -ne 0 ]; then