|
62 | 62 | $enable_ldap = { ldapconfigfile => $pureftpd::params::ldap_conf_path }
|
63 | 63 |
|
64 | 64 | # instantiate a pureftpd::config::ldap that will notify the service class
|
65 |
| - $safe_config_ldap = pureftpd_merge($config_ldap, |
| 65 | + $safe_config_ldap = merge($config_ldap, |
66 | 66 | { notify => Class[ 'pureftpd::service' ] }
|
67 | 67 | )
|
68 | 68 | create_resources( 'class',
|
|
80 | 80 | $enable_mysql = { mysqlconfigfile => $pureftpd::params::mysql_conf_path }
|
81 | 81 |
|
82 | 82 | # instantiate a pureftpd::config::mysql that will notify the service class
|
83 |
| - $safe_config_mysql = pureftpd_merge($config_mysql, |
| 83 | + $safe_config_mysql = merge($config_mysql, |
84 | 84 | { notify => Class[ 'pureftpd::service' ] }
|
85 | 85 | )
|
86 | 86 | create_resources( 'class',
|
|
98 | 98 | $enable_pgsql = { pgsqlconfigfile => $pureftpd::params::pgsql_conf_path }
|
99 | 99 |
|
100 | 100 | # instantiate a pureftpd::config::mysql will notify the service class
|
101 |
| - $safe_config_pgsql = pureftpd_merge($config_pgsql, |
| 101 | + $safe_config_pgsql = merge($config_pgsql, |
102 | 102 | { notify => Class[ 'pureftpd::service' ] }
|
103 | 103 | )
|
104 | 104 | create_resources( 'class',
|
|
112 | 112 | Class[ 'pureftpd::config::pgsql' ]
|
113 | 113 | }
|
114 | 114 |
|
115 |
| - $safe_config = pureftpd_merge( |
| 115 | + $safe_config = merge( |
116 | 116 | $config,
|
117 | 117 | { notify => Class[ 'pureftpd::service' ] },
|
118 | 118 | $enable_ldap,
|
|
0 commit comments