Commit 1b9ccd50 authored by Jonathan Gazeley's avatar Jonathan Gazeley
Browse files

Fix name of templates.conf

parent b54e2fff
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ class freeradius (
  }

  # Set up concat template file
  concat { "${freeradius::fr_basepath}/template.conf":
  concat { "${freeradius::fr_basepath}/templates.conf":
    owner   => 'root',
    group   => $freeradius::fr_group,
    mode    => '0640',
@@ -99,7 +99,7 @@ class freeradius (
    notify  => Service[$freeradius::fr_service],
  }
  concat::fragment { 'template_header':
    target  => "${freeradius::fr_basepath}/template.conf",
    target  => "${freeradius::fr_basepath}/templates.conf",
    content => "# Template config\n\n",
    order   => '05',
  }
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ define freeradius::template (

  # Configure config fragment for this template
  concat::fragment { "template -${name}":
    target  => "${fr_basepath}/template.conf",
    target  => "${fr_basepath}/templates.conf",
    source  => $source,
    content => $content,
    order   => 10,