summaryrefslogtreecommitdiff
path: root/templates/xorg.conf.epp
blob: 4ef4e6c5fdc422933ff5d1b4c0aa1d21c962172c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<%- |
  String $section,
  Optional[String] $identifier,
  Array[Tuple[String, Any]] $options,
  Hash[String, Any] $entries,
| -%>
Section "<%= $section %>"
  <%- if $identifier { -%>
  Identifier "<%= $identifier %>"
  <%- } -%>
  <%- $options.each |$tup| { -%>
  Option "<%= $tup[0] %>" "<%= $tup[1] %>"
  <%- } -%>
  <%- $entries.each |$k, $v| { -%>
  <%= $k %> "<%= $v %>"
  <%- } -%>
EndSection