3
0
Fork 0
forked from mirrors/nixpkgs

ldap module: fix activationScripts declaration

This commit is contained in:
Markus Mueller 2016-05-23 20:43:22 +00:00 committed by Franz Pletz
parent 3f22610bd7
commit 19ee3baa32

View file

@ -192,7 +192,7 @@ in
system.activationScripts = mkIf insertLdapPassword {
ldap = stringAfter [ "etc" "groups" "users" ] ''
if test -f "${cfg.bind.password}" ; then
echo "bindpw "$(cat ${cfg.bind.password})"" | cat ${ldapConfig} - > /etc/ldap.conf.bindpw
echo "bindpw "$(cat ${cfg.bind.password})"" | cat ${ldapConfig.source} - > /etc/ldap.conf.bindpw
mv -fT /etc/ldap.conf.bindpw /etc/ldap.conf
chmod 600 /etc/ldap.conf
fi