- # -*- coding: utf-8 -*-
- # vim: ft=yaml
- #
- # Setup variables using grains['osfinger'] based logic.
- # You just need to add the key:values for an `osfinger` that differ
- # from `defaults.yaml` + `osarch.yaml` + `os_family.yaml` + `osmap.yaml`.
- # Only add an `osfinger` which is/will be supported by the formula.
- #
- # If you do not need to provide defaults via the `os_finger` grain,
- # you will need to provide at least an empty dict in this file, e.g.
- # osfingermap: {}
- ---
- default:
- version: '2.4'
-
- # Suse
- Leap-42:
- version: '2.2'
-
- # os: el
- Red Hat Enterprise Linux Server-6:
- version: '2.2'
- service_state: skip
- pkg:
- deps:
- - epel-release
- - mod_ssl
- - mod_security
- - mod_geoip
- Red Hat Enterprise Linux Server-7:
- version: '2.4'
- Oracle Linux Server-6:
- version: '2.2'
- Oracle Linux Server-7:
- version: '2.4'
-
- # Debian-10: {}
- # Debian-9: {}
- # Debian-8: {}
-
- Ubuntu-12.04:
- version: '2.2'
- # Ubuntu-16.04: {}
- # Ubuntu-18.04: {}
-
- # Fedora-31: {}
- # Fedora-30: {}
-
- CentOS Linux-8:
- version: '2.4'
- pkg:
- deps:
- - epel-release
- - mod_ssl
- - mod_security
- - GeoIP
- # mod_geoip
-
- CentOS Linux-7:
- version: '2.4'
- conf_mod_wsgi: '/etc/httpd/conf.modules.d/10-wsgi.conf'
- pkg:
- deps:
- - epel-release
- - mod_ssl
- - mod_security
- - GeoIP
- - mod_geoip
- CentOS-6:
- version: '2.2'
- service_state: skip # necessary for cent6
- pkg:
- deps:
- - epel-release
- - mod_ssl
- - mod_security
- - mod_geoip
-
- Amazon Linux AMI-2014:
- version: '2.2'
- Amazon Linux AMI-2015:
- version: '2.2'
- Amazon Linux AMI-2016:
- version: '2.2'
- Amazon Linux-2:
- version: '2.4'
- pkg:
- deps:
- # mod_ssl
- - mod_security
- - GeoIP
-
- # Amazon Linux AMI-2018: {}
- # Leap-15: {}
- # FreeBSD-12: {}
- # Windows-8.1: {}
- # Gentoo-2: {}
|