2020-08-18 15:11:02 +00:00
|
|
|
#
|
|
|
|
# insalls lam (LDAP Account Manager)
|
|
|
|
#
|
|
|
|
|
|
|
|
class wmdeit_ldap::lam(
|
2020-08-19 06:16:10 +00:00
|
|
|
$archive = "lam_7_2.tar.gz",
|
|
|
|
$domain = 'default1',
|
2020-08-19 08:32:26 +00:00
|
|
|
$logdestination = "SYSLOG",
|
|
|
|
$lamloglevel = 4,
|
|
|
|
$master_password = "lam",
|
|
|
|
$master_password_salt = "ABCD1234",
|
2020-08-18 15:11:02 +00:00
|
|
|
|
2020-08-20 05:39:01 +00:00
|
|
|
$configs = {
|
2020-08-25 07:32:19 +00:00
|
|
|
"wmde" => {}
|
2020-08-20 05:39:01 +00:00
|
|
|
}
|
|
|
|
|
2020-08-18 15:11:02 +00:00
|
|
|
) {
|
2020-08-18 16:04:27 +00:00
|
|
|
$arcfile = "/tmp/$archive"
|
2020-08-19 06:16:10 +00:00
|
|
|
$extractdir = "/var/www/ldapaccountmanager"
|
|
|
|
$docroot = "$extractdir/lam"
|
2020-08-19 08:32:26 +00:00
|
|
|
|
|
|
|
$encoded_master_password= strip (regsubst(
|
|
|
|
generate ("/bin/sh", "-c", "echo -n $master_password$master_password_salt | openssl dgst -binary -sha1 | openssl base64")
|
|
|
|
, '\n', "\n "))
|
|
|
|
|
|
|
|
$encoded_master_password_salt = strip(regsubst(
|
|
|
|
generate("/bin/sh","-c", "echo -n $master_password_salt | openssl base64")
|
|
|
|
, '\n', "\n "))
|
2020-08-18 16:04:27 +00:00
|
|
|
|
|
|
|
class { 'apache':
|
2020-08-19 06:16:10 +00:00
|
|
|
default_vhost => false,
|
2020-08-18 16:04:27 +00:00
|
|
|
mpm_module => 'prefork',
|
|
|
|
}
|
|
|
|
|
|
|
|
class { 'apache::mod::php':
|
2020-08-27 17:05:50 +00:00
|
|
|
# php_version => '7.3'
|
2020-08-18 16:04:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class { '::php':
|
|
|
|
extensions => {
|
|
|
|
curl => {},
|
2020-08-19 06:16:10 +00:00
|
|
|
ldap => {},
|
|
|
|
gd => {},
|
|
|
|
gmp => {},
|
|
|
|
zip => {},
|
2020-08-18 16:04:27 +00:00
|
|
|
},
|
|
|
|
notify => Service["apache2"],
|
|
|
|
require => Class["apache"]
|
|
|
|
}
|
|
|
|
|
|
|
|
file {"/var/www":
|
|
|
|
ensure => "directory"
|
|
|
|
} ->
|
|
|
|
archive {"$arcfile":
|
|
|
|
ensure => present,
|
|
|
|
source => "https://srcsrv.wikimedia.de/WMDE/LDAPAccountManager/archive/$archive",
|
|
|
|
extract => true,
|
|
|
|
extract_path => "/var/www",
|
2020-08-19 06:16:10 +00:00
|
|
|
creates => $extractdir
|
|
|
|
} ->
|
|
|
|
apache::vhost { $domain:
|
|
|
|
port => '80',
|
|
|
|
docroot => $docroot
|
|
|
|
} ->
|
|
|
|
file {["$docroot/tmp","$docroot/sess"]:
|
|
|
|
ensure => directory,
|
|
|
|
owner => "www-data"
|
2020-08-19 08:32:26 +00:00
|
|
|
} ->
|
|
|
|
file {"$docroot/config/config.cfg":
|
|
|
|
ensure => file,
|
|
|
|
content => template("wmdeit_ldap/lam-config.cfg.erb"),
|
|
|
|
owner => "www-data",
|
2020-08-19 09:15:07 +00:00
|
|
|
} ->
|
2020-08-20 05:39:01 +00:00
|
|
|
file {"$docroot/config/profiles":
|
|
|
|
ensure => directory,
|
|
|
|
} ->
|
|
|
|
file {"$docroot/config/pdf":
|
|
|
|
ensure => directory,
|
2020-08-24 21:20:16 +00:00
|
|
|
} ->
|
|
|
|
file {"$docroot/lib/modules/wmdeGroup.inc":
|
|
|
|
ensure => file,
|
|
|
|
content => file("wmdeit_ldap/wmdeGroup.inc")
|
|
|
|
}
|
2020-08-20 05:39:01 +00:00
|
|
|
|
|
|
|
$configs.each | String $name, $conf | {
|
2020-08-25 07:32:19 +00:00
|
|
|
$password = $conf['password'] ? {
|
|
|
|
undef => '1234',
|
|
|
|
default => $conf['password'],
|
|
|
|
}
|
|
|
|
$password_salt = $conf['password_salt'] ? {
|
|
|
|
undef => '5678',
|
|
|
|
default => $conf['password_salt'],
|
|
|
|
}
|
|
|
|
|
|
|
|
$encoded_password= strip (regsubst(
|
|
|
|
generate ("/bin/sh", "-c", "echo -n $password$password_salt | openssl dgst -binary -sha1 | openssl base64")
|
|
|
|
, '\n', "\n "))
|
|
|
|
|
|
|
|
$encoded_password_salt = strip(regsubst(
|
|
|
|
generate("/bin/sh","-c", "echo -n $password_salt | openssl base64")
|
|
|
|
, '\n', "\n "))
|
|
|
|
|
2020-08-25 12:03:33 +00:00
|
|
|
$base64pw = base64( 'encode',"LAM_OBFUSCATE:${conf['login_search_password']}")
|
|
|
|
$spw = strip (regsubst(
|
|
|
|
generate("/bin/sh","-c", "echo -n '$base64pw' | /usr/bin/rot13")
|
|
|
|
, '\n', "\n "))
|
2020-08-25 07:32:19 +00:00
|
|
|
|
2020-08-25 10:21:03 +00:00
|
|
|
wmdeit_ldap::lam::config {$name:
|
|
|
|
encoded_password => $encoded_password,
|
|
|
|
encoded_password_salt => $encoded_password_salt,
|
|
|
|
suffix_user => $conf['suffix_user'],
|
|
|
|
suffix_group => $conf['suffix_group'],
|
|
|
|
tree_suffix => $conf['tree_suffix'],
|
2020-08-25 12:03:33 +00:00
|
|
|
admins => $conf['admins'],
|
|
|
|
login_method => $conf['login_method'] ? {undef => "list", default => $conf['login_method']},
|
|
|
|
login_search_suffix => $conf['login_search_suffix'],
|
|
|
|
login_search_dn => $conf['login_search_dn'],
|
|
|
|
login_search_filter => $conf['login_search_filter'] ? {
|
|
|
|
undef => "uid=%USER%",
|
|
|
|
default => $conf['login_search_filter']
|
|
|
|
},
|
|
|
|
|
|
|
|
login_search_password => $conf['login_search_password'] ? {
|
|
|
|
undef => "",
|
|
|
|
default => $spw
|
|
|
|
},
|
|
|
|
|
2020-08-25 12:35:41 +00:00
|
|
|
server_url => $conf['server_url'] ? {
|
2020-08-27 17:05:50 +00:00
|
|
|
undef => 'ldap://localhost:389',
|
|
|
|
default => $conf['server_url'],
|
2020-08-25 12:35:41 +00:00
|
|
|
},
|
2020-08-25 10:21:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2020-08-25 07:32:19 +00:00
|
|
|
|
|
|
|
|
2020-08-25 10:21:03 +00:00
|
|
|
define wmdeit_ldap::lam::config
|
|
|
|
(
|
|
|
|
$encoded_password,
|
|
|
|
$encoded_password_salt,
|
|
|
|
$tree_suffix,
|
|
|
|
$suffix_user = "ou=People,$tree_suffix",
|
|
|
|
$suffix_group = "ou=Groups,$tree_suffix",
|
2020-08-25 12:03:33 +00:00
|
|
|
$docroot = $::wmdeit_ldap::lam::docroot,
|
|
|
|
$admins = [],
|
|
|
|
$login_method = "search",
|
|
|
|
$login_search_suffix = "",
|
|
|
|
$login_search_dn = "",
|
|
|
|
$login_search_filter = "",
|
|
|
|
$login_search_password = "",
|
2020-08-25 12:35:41 +00:00
|
|
|
$server_url ,
|
|
|
|
|
2020-08-25 12:03:33 +00:00
|
|
|
|
2020-08-25 10:21:03 +00:00
|
|
|
){
|
|
|
|
if (!$suffix_user) or (!$suffix_group) {
|
|
|
|
fail("no suffix_user or suffix_group given")
|
2020-08-18 15:11:02 +00:00
|
|
|
}
|
2020-08-19 06:16:10 +00:00
|
|
|
|
2020-08-25 10:21:03 +00:00
|
|
|
file {"$docroot/config/$title.conf":
|
|
|
|
ensure => file,
|
|
|
|
content => template("wmdeit_ldap/wmde.conf.erb"),
|
|
|
|
owner => "www-data",
|
|
|
|
require => File["$docroot/config/pdf"],
|
|
|
|
} ->
|
|
|
|
file {"$docroot/config/profiles/$title":
|
|
|
|
ensure=>directory
|
|
|
|
}->
|
|
|
|
file{"$docroot/config/profiles/$title/default.user":
|
|
|
|
ensure=>file,
|
|
|
|
content => template("wmdeit_ldap/default.user.erb")
|
|
|
|
} ->
|
|
|
|
file{"$docroot/config/profiles/$title/default.group":
|
|
|
|
ensure=>file,
|
|
|
|
content => template("wmdeit_ldap/default.group.erb")
|
|
|
|
}
|
|
|
|
|
2020-08-18 15:11:02 +00:00
|
|
|
}
|
|
|
|
|
2020-08-25 10:21:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|