nsswitch-formula/nsswitch/files/nsswitch.conf

15 lines
426 B
Plaintext
Raw Normal View History

2017-05-23 15:17:51 -04:00
{% from "nsswitch/map.jinja" import nsswitch_settings as nsswitch with context -%}
# /etc/nsswitch.conf
#
# Managed by Salt
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.
2019-01-24 13:40:54 -05:00
{%- for key, value in nsswitch.config.items() %}
2017-05-23 15:17:51 -04:00
{{ key }}: {{ value }}
{%- endfor %}