mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-13 11:06:25 +05:00
12 lines
244 B
Django/Jinja
12 lines
244 B
Django/Jinja
|
|
#!/bin/sh
|
|
|
|
{{ ansible_managed | comment('plain') }}
|
|
|
|
export GOROOT='{{ golang_install_dir }}'
|
|
export PATH=$PATH:$GOROOT/bin
|
|
|
|
{% if golang_gopath not in (None, '') %}
|
|
export GOPATH="{{ golang_gopath }}"
|
|
export PATH=$PATH:$GOPATH/bin
|
|
{% endif %} |