mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
25 lines
595 B
Django/Jinja
25 lines
595 B
Django/Jinja
{% if grains.os == 'CentOS' %}
|
|
|
|
{% set REPOPATH = '/etc/yum.repos.d/' %}
|
|
{% set ABSENTFILES = [
|
|
'CentOS-Base.repo',
|
|
'CentOS-CR.repo',
|
|
'CentOS-Debuginfo.repo',
|
|
'CentOS-fasttrack.repo',
|
|
'CentOS-Media.repo',
|
|
'CentOS-Sources.repo',
|
|
'CentOS-Vault.repo',
|
|
'CentOS-x86_64-kernel.repo',
|
|
'epel.repo',
|
|
'epel-testing.repo',
|
|
'saltstack.repo',
|
|
'wazuh.repo'
|
|
]
|
|
%}
|
|
|
|
{% elif grains.os == 'Ubuntu' %}
|
|
|
|
{% set REPOPATH = '/etc/apt/sources.list.d/' %}
|
|
{% set ABSENTFILES = [] %}
|
|
|
|
{% endif %} |