aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/cobbler/snippets/kickstart_gem_local_repo
blob: ac77938247f156431c31f7581982e809303ce04f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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