diff options
author | Michael Scherer <misc@mageia.org> | 2012-02-12 12:07:03 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-02-12 12:07:03 +0000 |
commit | 3d64ecec87325a55fbc4672fa03886895c5ede5c (patch) | |
tree | bf491c32e68d2139e1456055d1390ee53e7e728a | |
parent | fd2b5250457a0a0623601c515087feb3621922f4 (diff) | |
download | puppet-3d64ecec87325a55fbc4672fa03886895c5ede5c.tar puppet-3d64ecec87325a55fbc4672fa03886895c5ede5c.tar.gz puppet-3d64ecec87325a55fbc4672fa03886895c5ede5c.tar.bz2 puppet-3d64ecec87325a55fbc4672fa03886895c5ede5c.tar.xz puppet-3d64ecec87325a55fbc4672fa03886895c5ede5c.zip |
fix regexp for matching dsa key ( since it would have been too logical to call that dsa key and use ssh-dsa.. )
-rw-r--r-- | modules/openldap/templates/slapd.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/openldap/templates/slapd.conf b/modules/openldap/templates/slapd.conf index 57e5cbab..9451d6cd 100644 --- a/modules/openldap/templates/slapd.conf +++ b/modules/openldap/templates/slapd.conf @@ -104,7 +104,7 @@ dynlist-attrset groupOfURLs memberURL member overlay constraint -constraint_attribute sshPublicKey regex "^ssh-[rd]sa [[:graph:]]+ [[:graph:]]+$" +constraint_attribute sshPublicKey regex "^ssh-(rsa|dss) [[:graph:]]+ [[:graph:]]+$" # uncomment if you want to automatically update group # memberships when an user is removed from the tree |