diff --git a/manifests/policy.pp b/manifests/policy.pp index 2722667..eab71fe 100644 --- a/manifests/policy.pp +++ b/manifests/policy.pp @@ -1,6 +1,7 @@ # Install FreeRADIUS policies define freeradius::policy ( - Optional[String] $source, + Optional[String] $source = undef, + Optional[String] $content = undef, Optional[Integer] $order = 50, Freeradius::Ensure $ensure = present, ) { @@ -15,6 +16,7 @@ owner => 'root', group => $fr_group, source => $source, + content => $content, require => [Package['freeradius'], Group['radiusd']], notify => Service['radiusd'], }