-
Notifications
You must be signed in to change notification settings - Fork 98
/
pillar.example
45 lines (39 loc) · 1.07 KB
/
pillar.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# -*- coding: utf-8 -*-
# vim: ft=yaml
---
epel:
lookup:
# URL to the EPEL RPM to install
rpm: default varies with OS; see epel/init.sls
# URL to the EPEL GPG key
pubkey: default varies with OS; see epel/map.jinja
pubkey_hash: default varies with OS; see epel/map.jinja
# filename for the local EPEL Key
pubkey_name: default varies with OS; see epel/map.jinja
# Disable repo so requires the --enablerepo flag to use
disabled: false
# Disable (default)/enable EPEL testing
testing: false
# Alternative, more detailed per-repo configuration
repos:
epel:
enabled: true
exclude:
- pkg1
- pkg2
epel-debuginfo:
enabled: true
epel-source:
enabled: true
epel-testing:
enabled: false
epel-testing-debuginfo:
enabled: false
epel-testing-source:
enabled: false
# https://docs.saltproject.io/en/latest/ref/states/requisites.html#retrying-states
retry_options:
attempts: 3
until: true
interval: 10
splay: 10