Commit fa1ce3f0 authored by Mark Ottaway's avatar Mark Ottaway Committed by Jonathan
Browse files

Adding content option to policy so templates can be used.

parent acf08d68
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
# Install FreeRADIUS policies
define freeradius::policy (
  Optional[String] $source,
  Optional[String] $content,
  Optional[Integer] $order   = 50,
  Freeradius::Ensure $ensure = present,
) {
@@ -15,6 +16,7 @@ define freeradius::policy (
    owner   => 'root',
    group   => $fr_group,
    source  => $source,
    content => $content,
    require => [Package['freeradius'], Group['radiusd']],
    notify  => Service['radiusd'],
  }