20dcf7c257
Change-Id: Icfd90d09ed55f3f0723a77642cc803d39440896d
24 lines
456 B
Plaintext
24 lines
456 B
Plaintext
cat << EOF > /root/.gemrc
|
|
#if $getVar('proxy', '') != ""
|
|
gem: --no-ri --no-rdoc --http-proxy=$proxy
|
|
#else
|
|
gem: --no-ri --no-rdoc
|
|
#end if
|
|
:backtrace: false
|
|
:benchmark: false
|
|
:bulk_threshold: 1000
|
|
:sources:
|
|
#if $getVar("local_repo","") != ""
|
|
- $local_repo/gem_repo/
|
|
#if $getVar("local_repo_only","1") == "0"
|
|
- https://rubygems.org/
|
|
#end if
|
|
#else
|
|
- https://rubygems.org/
|
|
#end if
|
|
:update_sources: true
|
|
:verbose: true
|
|
EOF
|
|
|
|
cp -f /root/.gemrc /etc/gemrc
|