diff options
author | Michael Scherer <misc@mageia.org> | 2012-02-02 18:15:35 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-02-02 18:15:35 +0000 |
commit | a71deaf4778340ee8570d75b8d3890a878785424 (patch) | |
tree | ce480d196784b61129726ef5007999e040251d8c /modules/catdap | |
parent | 6afc36c0916e2926c45380f625201f99b3867c73 (diff) | |
download | puppet-a71deaf4778340ee8570d75b8d3890a878785424.tar puppet-a71deaf4778340ee8570d75b8d3890a878785424.tar.gz puppet-a71deaf4778340ee8570d75b8d3890a878785424.tar.bz2 puppet-a71deaf4778340ee8570d75b8d3890a878785424.tar.xz puppet-a71deaf4778340ee8570d75b8d3890a878785424.zip |
fix string interpolation, that broke identity ( due to restart of apache )
Diffstat (limited to 'modules/catdap')
-rw-r--r-- | modules/catdap/templates/catdap_local.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/catdap/templates/catdap_local.yml b/modules/catdap/templates/catdap_local.yml index 0ab4394b..429da7c2 100644 --- a/modules/catdap/templates/catdap_local.yml +++ b/modules/catdap/templates/catdap_local.yml @@ -1,7 +1,7 @@ <% -ldap_server = 'ldap-master.#{domain}' +ldap_server = "ldap-master.#{domain}" -ldap_account = 'cn=catdap-#{hostname},ou=System Accounts,#{dc_suffix}' +ldap_account = "cn=catdap-#{hostname},ou=System Accounts,#{dc_suffix}" %> organisation: Mageia |