From 6d4de5f75f818142c12d95b11f64983589e3b791 Mon Sep 17 00:00:00 2001 From: Alexander Weidinger Date: Mon, 19 Apr 2021 01:53:38 +0200 Subject: [PATCH] fix(parameters): use correct config file for CentOS --- unbound/parameters/os/CentOS.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 unbound/parameters/os/CentOS.yaml diff --git a/unbound/parameters/os/CentOS.yaml b/unbound/parameters/os/CentOS.yaml new file mode 100644 index 0000000..e3a2a79 --- /dev/null +++ b/unbound/parameters/os/CentOS.yaml @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- +# vim: ft=yaml +# +# Set values specific to: +# salt['config.get']('os') == Fedora. +# +# You just need to add the key:values for this `os` that differ +# from `defaults.yaml` + `.yaml` + `.yaml`. +# +# If you do not need to provide defaults via the `os` config, +# you can remove this file or provide at least an empty dict, e.g. +# values: {} +--- +values: + config: '/etc/unbound/unbound.conf' + config_dir: '/etc/unbound' +...