From 6a9aeac93c98395160ca0317a14c2e58e3ef805e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20M=E4kinen?= Date: Tue, 3 Apr 2012 00:03:01 +0300 Subject: [PATCH] Fixed depency error on Fedora from ldap::auth. --- ldap/manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ldap/manifests/init.pp b/ldap/manifests/init.pp index 5011652..209b896 100644 --- a/ldap/manifests/init.pp +++ b/ldap/manifests/init.pp @@ -98,7 +98,7 @@ class ldap::auth inherits ldap::client { path => "/bin:/usr/bin:/sbin:/usr/sbin", unless => 'cat /etc/sysconfig/authconfig | egrep "^USELDAPAUTH=yes$|^USELDAP=yes$" | wc -l | egrep "^2$"', before => Service["sssd"], - require => Package["sssd"], + require => [ Package["sssd"], Package["pam_ldap"], ], } service { "sssd": ensure => running,