[Bps-public-commit] rt-authen-externalauth branch, master, updated. 0.18-2-gf2df8a0

Kevin Falcone falcone at bestpractical.com
Sun Mar 30 21:24:00 EDT 2014


The branch, master has been updated
       via  f2df8a00a8b5fa44acd1d3ac4a3f30702594ae78 (commit)
      from  952509739fdd303ea61555a6428c928b4e457a72 (commit)

Summary of changes:
 etc/RT_SiteConfig.pm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

- Log -----------------------------------------------------------------
commit f2df8a00a8b5fa44acd1d3ac4a3f30702594ae78
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Sun Mar 30 21:22:12 2014 -0400

    Fix an incorrect ExternalSettings Example
    
    ExternalSettings is a hashref because it predates widespread support
    and knowledge of Set(%ExternalSettings,) and it gives a really crappy
    message if you Set($ExternalSettings, MyLDAP =>
    rather than Set($ExternalSettings, { MyLDAP

diff --git a/etc/RT_SiteConfig.pm b/etc/RT_SiteConfig.pm
index 801409a..10c4338 100644
--- a/etc/RT_SiteConfig.pm
+++ b/etc/RT_SiteConfig.pm
@@ -85,7 +85,7 @@ The outer structure is a key with the authentication option (name of external
 source). The value is a hash reference with configuration keys and values,
 for example:
 
-    Set($ExternalSettings,
+    Set($ExternalSettings, {
         MyLDAP => {
             type => 'ldap',
             ... other options ...
@@ -95,7 +95,7 @@ for example:
             ... other options ...
         },
         ... other sources ...
-    );
+        } );
 
 As shown above, each description should have 'type' defined.
 The following types are supported:

-----------------------------------------------------------------------



More information about the Bps-public-commit mailing list