Skip to content
Snippets Groups Projects
Unverified Commit ecd6f8d0 authored by Jonathan's avatar Jonathan Committed by GitHub
Browse files

Merge pull request #132 from craigwatson/master

Parameters: Fixing types + defaults
parents 1f89e889 24c83e31
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ define freeradius::client ( ...@@ -4,7 +4,7 @@ define freeradius::client (
Optional[String] $shortname = $title, Optional[String] $shortname = $title,
Optional[String] $ip = undef, Optional[String] $ip = undef,
Optional[String] $ip6 = undef, Optional[String] $ip6 = undef,
Enum['*', 'udp', 'tcp'] $proto = undef, Enum['*', 'udp', 'tcp'] $proto = '*',
Freeradius::Boolean $require_message_authenticator = 'no', Freeradius::Boolean $require_message_authenticator = 'no',
Optional[String] $virtual_server = undef, Optional[String] $virtual_server = undef,
Enum['cisco', 'computone', 'livingston', 'juniper', 'max40xx', 'multitech', 'netserver', 'pathras', 'patton', 'portslave', 'tc', 'usrhiper', 'other'] $nastype = undef, Enum['cisco', 'computone', 'livingston', 'juniper', 'max40xx', 'multitech', 'netserver', 'pathras', 'patton', 'portslave', 'tc', 'usrhiper', 'other'] $nastype = undef,
......
# Install FreeRADIUS virtual servers (sites) # Install FreeRADIUS virtual servers (sites)
define freeradius::site ( define freeradius::site (
Freeradius::Ensure $ensure = present, Freeradius::Ensure $ensure = present,
String $source = undef, Optional[String] $source = undef,
String $content = undef, Optional[String] $content = undef,
Array[String] $authorize = [], Array[String] $authorize = [],
Array[String] $authenticate = [], Array[String] $authenticate = [],
Array[String] $preacct = [], Array[String] $preacct = [],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment