Mercurial > repos > other > Puppet
comparison modules/apache/manifests/mod/authn_dbd.pp @ 275:d9352a684e62
Mass update of modules to remove deprecation warnings
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 26 Jan 2020 11:36:07 +0000 |
parents | 675c1cc61eaf |
children | b8d6ada284dd |
comparison
equal
deleted
inserted
replaced
274:b2571c28fc27 | 275:d9352a684e62 |
---|---|
1 # @summary | |
2 # Installs `mod_authn_dbd`. | |
3 # | |
4 # @param authn_dbd_params | |
5 # The params needed for the mod to function. | |
6 # | |
7 # @param authn_dbd_dbdriver | |
8 # Selects an apr_dbd driver by name. | |
9 # | |
10 # @param authn_dbd_query | |
11 # | |
12 # @param authn_dbd_min | |
13 # Set the minimum number of connections per process. | |
14 # | |
15 # @param authn_dbd_max | |
16 # Set the maximum number of connections per process. | |
17 # | |
18 # @param authn_dbd_keep | |
19 # Set the maximum number of connections per process to be sustained. | |
20 # | |
21 # @param authn_dbd_exptime | |
22 # Set the time to keep idle connections alive when the number of | |
23 # connections specified in DBDKeep has been exceeded. | |
24 # | |
25 # @param authn_dbd_alias | |
26 # Sets an alias for `AuthnProvider. | |
27 # | |
28 # @see https://httpd.apache.org/docs/current/mod/mod_authn_dbd.html for additional documentation. | |
29 # | |
1 class apache::mod::authn_dbd ( | 30 class apache::mod::authn_dbd ( |
2 $authn_dbd_params, | 31 $authn_dbd_params, |
3 $authn_dbd_dbdriver = 'mysql', | 32 $authn_dbd_dbdriver = 'mysql', |
4 $authn_dbd_query = undef, | 33 $authn_dbd_query = undef, |
5 $authn_dbd_min = '4', | 34 $authn_dbd_min = '4', |