From: Arran Cudbard-Bell Date: Fri, 29 Aug 2014 19:34:23 +0000 (+0200) Subject: Few more... X-Git-Tag: release_3_0_5~673 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe97a2bc4743a372945061a5542700a5ddc2e633;p=thirdparty%2Ffreeradius-server.git Few more... --- diff --git a/raddb/sites-available/inner-tunnel b/raddb/sites-available/inner-tunnel index f8f4dc58d7b..2b650d2a6e7 100644 --- a/raddb/sites-available/inner-tunnel +++ b/raddb/sites-available/inner-tunnel @@ -101,7 +101,7 @@ authorize { # the next few lines. # update control { - Proxy-To-Realm := LOCAL + &Proxy-To-Realm := LOCAL } # @@ -330,7 +330,7 @@ post-auth { # to use Chargeable-User-Identity attribute from RFC 4372. # See further on. #update outer.reply { - # User-Name = "%{request:User-Name}" + # &User-Name = &request:User-Name #} # } diff --git a/raddb/sites-available/robust-proxy-accounting b/raddb/sites-available/robust-proxy-accounting index d21680b2299..7d8cb116792 100644 --- a/raddb/sites-available/robust-proxy-accounting +++ b/raddb/sites-available/robust-proxy-accounting @@ -160,7 +160,7 @@ server home.example.com { # You may want accounting policies here... update control { - &Proxy-To-Realm := "acct_realm.example.com" + &Proxy-To-Realm := 'acct_realm.example.com' } } diff --git a/raddb/sites-available/soh b/raddb/sites-available/soh index b6ced355011..86748b6b140 100644 --- a/raddb/sites-available/soh +++ b/raddb/sites-available/soh @@ -7,7 +7,7 @@ server soh-server { authorize { - if (SoH-Supported == no) { + if (&SoH-Supported == no) { # client NAKed our request for SoH - not supported, or turned off update config { &Auth-Type = Accept @@ -15,12 +15,12 @@ server soh-server { } else { # client replied; check something - this is a local policy issue! - if (SoH-MS-Windows-Health-Status =~ /antivirus (warn|error) /) { + if (&SoH-MS-Windows-Health-Status =~ /antivirus (warn|error) /) { update config { &Auth-Type = Reject } update reply { - &Reply-Message = "You must have antivirus enabled & installed!" + &Reply-Message = 'You must have antivirus enabled & installed!' } } else {