mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-18 19:23:17 +02:00
8 lines
352 B
Django/Jinja
8 lines
352 B
Django/Jinja
#!/bin/sh
|
|
|
|
exec /usr/local/bin/bb.real \
|
|
{% if system_proxy is defined and system_proxy != '' %}
|
|
-Dhttp.proxyHost={{ system_proxy | urlsplit('hostname') }} -Dhttp.proxyPort={{ system_proxy | urlsplit('port') }} -Dhttps.proxyHost={{ system_proxy | urlsplit('hostname') }} -Dhttps.proxyPort={{ system_proxy | urlsplit('port') }} \
|
|
{% endif %}
|
|
$@
|