Initial commit - class to install LDAP Account Manager

This commit is contained in:
Tobias Herre 2020-08-18 17:11:02 +02:00
parent a6b5c6d7db
commit 5f4727b784
1 changed files with 14 additions and 0 deletions

14
manifests/lam.pp Normal file
View File

@ -0,0 +1,14 @@
#
# insalls lam (LDAP Account Manager)
#
class wmdeit_ldap::lam(
$archive = "lam_7_2.tar.gz"
) {
file {"/tmp/$archive":
ensure => file,
source => "https://srcsrv.wikimedia.de/WMDE/LDAPAccountManager/archive/$archive"
}
}