diff options
author | Nicolas Vigier <boklm@mageia.org> | 2012-06-29 15:33:33 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2012-06-29 15:33:33 +0000 |
commit | 1b156ed32f12c0665ade4b8f717ed557c9deaeaf (patch) | |
tree | d21af7ad4f0406d160f9614a709170f8c7ec3f2c | |
parent | 8069426705b1992b8f9ec4538f722fb3a8f7ef65 (diff) | |
download | puppet-1b156ed32f12c0665ade4b8f717ed557c9deaeaf.tar puppet-1b156ed32f12c0665ade4b8f717ed557c9deaeaf.tar.gz puppet-1b156ed32f12c0665ade4b8f717ed557c9deaeaf.tar.bz2 puppet-1b156ed32f12c0665ade4b8f717ed557c9deaeaf.tar.xz puppet-1b156ed32f12c0665ade4b8f717ed557c9deaeaf.zip |
update authentication_info_url value
-rw-r--r-- | modules/sympa/manifests/server.pp | 4 | ||||
-rw-r--r-- | modules/sympa/templates/auth.conf | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/modules/sympa/manifests/server.pp b/modules/sympa/manifests/server.pp index 22a9cdae..daed4e07 100644 --- a/modules/sympa/manifests/server.pp +++ b/modules/sympa/manifests/server.pp @@ -1,4 +1,6 @@ -class sympa::server { +class sympa::server( + $authentication_info_url = 'https://wiki.mageia.org/en/Mageia.org_user_account' + ) { include sympa::variable # perl-CGI-Fast is needed for fast cgi # perl-Socket6 is required by perl-IO-Socket-SSL diff --git a/modules/sympa/templates/auth.conf b/modules/sympa/templates/auth.conf index 64256253..af998b68 100644 --- a/modules/sympa/templates/auth.conf +++ b/modules/sympa/templates/auth.conf @@ -9,5 +9,5 @@ ldap use_ssl 1 bind_dn cn=sympa-<%= hostname %>,ou=System Accounts,<%= dc_suffix %> bind_password <%= ldap_password %> - authentication_info_url https://identity.<%= domain %>/ + authentication_info_url <%= authentication_info_url %> |