diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-10-19 16:12:50 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-10-19 16:12:50 +0200 |
commit | b3ac23bb9960207194de901275f33a72b0779690 (patch) | |
tree | fdf055e37a86a4987885cef8e74f86ec4187a9bf /modules/role/manifests | |
parent | f7ef7ce7f8d596d38739c5e96623e8630e1036ae (diff) | |
download | Puppet-b3ac23bb9960207194de901275f33a72b0779690.tar.gz Puppet-b3ac23bb9960207194de901275f33a72b0779690.tar.zst Puppet-b3ac23bb9960207194de901275f33a72b0779690.zip |
Add ldap ssha script
Diffstat (limited to 'modules/role/manifests')
-rw-r--r-- | modules/role/manifests/caldance.pp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/role/manifests/caldance.pp b/modules/role/manifests/caldance.pp index b7948e6..63dda1f 100644 --- a/modules/role/manifests/caldance.pp +++ b/modules/role/manifests/caldance.pp | |||
@@ -9,4 +9,15 @@ class role::caldance ( | |||
9 | include "profile::monitoring" | 9 | include "profile::monitoring" |
10 | 10 | ||
11 | ensure_packages(["python-pip", "python-virtualenv", "python-django"]) | 11 | ensure_packages(["python-pip", "python-virtualenv", "python-django"]) |
12 | |||
13 | # pour le script de génération de mdp | ||
14 | ensure_packages(["perl-digest-sha1"]) | ||
15 | |||
16 | file { "/usr/local/bin/ldap_ssha": | ||
17 | owner => "root", | ||
18 | group => "root", | ||
19 | mode => "0755", | ||
20 | source => "puppet:///modules/base_installation/scripts/ldap_ssha", | ||
21 | require => Package["perl-digest-sha1"], | ||
22 | } | ||
12 | } | 23 | } |