* One down, three to go.

svn path=/nixos/branches/modular-nixos/; revision=15784
This commit is contained in:
Eelco Dolstra 2009-05-29 10:04:04 +00:00
parent 107fc990a6
commit 19e0f46b0e
4 changed files with 12 additions and 30 deletions

View file

@ -57,19 +57,19 @@ mkIf config.users.ldap.enable {
# Careful: OpenLDAP seems to be very picky about the indentation of
# this file. Directives HAVE to start in the first column!
{ source = pkgs.writeText "ldap.conf" ''
uri ${config.users.ldap.server}
base ${config.users.ldap.base}
${
if config.users.ldap.useTLS then ''
ssl start_tls
tls_checkpeer no
'' else ""
}
'';
{ source = pkgs.writeText "ldap.conf"
''
uri ${config.users.ldap.server}
base ${config.users.ldap.base}
${if config.users.ldap.useTLS then ''
ssl start_tls
tls_checkpeer no
'' else ""}
'';
target = "ldap.conf";
}
];
};

View file

@ -2,7 +2,6 @@
require = [
../system/nixos-installer.nix
../upstart-jobs/cron/locate.nix
../upstart-jobs/ldap
../upstart-jobs/pcmcia.nix
];
}

View file

@ -2,6 +2,7 @@
./config/fonts.nix
./config/guest-users.nix
./config/i18n.nix
./config/ldap.nix
./config/networking.nix
./config/nsswitch.nix
./config/system-path.nix

View file

@ -1,18 +0,0 @@
{writeText, config}:
# Careful: OpenLDAP seems to be very picky about the indentation of
# this file. Directives HAVE to start in the first column!
writeText "ldap.conf" "
uri ${config.users.ldap.server}
base ${config.users.ldap.base}
${
if config.users.ldap.useTLS then "
ssl start_tls
tls_checkpeer no
" else ""
}
"