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