47818fc360
FEATURE: Archlinux support FEATURE: Windows support FEATURE: Enhanced CI/CD FEATURE: modular states BREAKING CHANGE: 'apache.sls' converted to new style 'init.ssl' BREAKING CHANGE: "logrotate.sls" became "config/logrotate.sls" BREAKING CHANGE: "debian_full.sls" became "config/debian_full.sls" BREAKING CHANGE: "flags.sls" became "config/flags.sls" BREAKING CHANGE: "manage_security" became "config/manage_security.sls" BREAKING CHANGE: "mod_*.sls" became "config/mod_*.sls" BREAKING CHANGE: "no_default_host.sls" became "config/no_default_host.sls" BREAKING CHANGE: "own_default_host.sls" became "config/own_default_host.sls" BREAKING CHANGE: "register_site.sls" became "config/register_site.sls" BREAKING CHANGE: "server_status.sls" became "config/server_status.sls" BREAKING CHANGE: "vhosts/" became "config/vhosts/" BREAKING CHANGE: "mod_security/" became "config/mod_security/" NOT-BREAKING CHANGE: 'config.sls' became 'config/init.sls' NOT-BREAKING CHANGE: 'uninstall.sls' symlinked to 'clean.sls'
98 lines
1.8 KiB
YAML
98 lines
1.8 KiB
YAML
# -*- 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: {}
|