mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-09 10:42:54 +01:00
20 lines
838 B
Django/Jinja
20 lines
838 B
Django/Jinja
{% set proxy = salt['pillar.get']('manager:proxy') -%}
|
|
[main]
|
|
cachedir=/var/cache/yum/$basearch/$releasever
|
|
keepcache=0
|
|
debuglevel=2
|
|
logfile=/var/log/yum.log
|
|
exactarch=1
|
|
obsoletes=1
|
|
gpgcheck=1
|
|
plugins=1
|
|
installonly_limit={{ salt['pillar.get']('yum:config:installonly_limit', 2) }}
|
|
bugtracker_url=http://bugs.centos.org/set_project.php?project_id=23&ref=http://bugs.centos.org/bug_report_page.php?category=yum
|
|
distroverpkg=centos-release
|
|
clean_requirements_on_remove=1
|
|
{% if (grains['role'] not in ['so-eval','so-managersearch', 'so-manager', 'so-standalone', 'so-import']) and ( salt['pillar.get']('global:managerupdate', '0') or salt['pillar.get']('patch:os:source', 'direct') == 'manager' ) -%}
|
|
proxy=http://{{ salt['pillar.get']('yum:config:proxy', salt['config.get']('master')) }}:3142
|
|
{% elif proxy -%}
|
|
proxy={{ proxy }}
|
|
{% endif %}
|