Update ordering for slapd config generation

Ordering was updated to generate valid slapd config

Change-Id: I35bd45465582219a645e9099ad7964fa3febc10c
Related-Bug: #1598743
This commit is contained in:
Maksym Yatsenko 2016-07-04 22:37:21 +03:00
parent b60d40b799
commit 9d74073c0d
1 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ class plugin_ldap::ldap_proxy_install (
}
if $base_config_label in $slapd_config_template {
concat::fragment { "base_fragment" :
concat::fragment { 'base_fragment' :
target => $slapd_config,
content => template('plugin_ldap/slapd_base.erb'),
order => '10',
@ -44,14 +44,14 @@ class plugin_ldap::ldap_proxy_install (
concat::fragment { "${domain_name}_fragment" :
target => $slapd_config,
content => template('plugin_ldap/slapd_conf.erb'),
order => '20',
order => '30',
}
}
else {
concat::fragment { "${domain_name}_tls_fragment" :
target => $slapd_config,
content => template('plugin_ldap/slapd_tls_conf.erb'),
order => '20',
order => '30',
}
}
}
@ -60,7 +60,7 @@ class plugin_ldap::ldap_proxy_install (
concat::fragment { 'ldap_proxy_init' :
target => $slapd_config,
content => $slapd_custom_config,
order => '30',
order => '20',
}
}
}