Here's the original contents of my /etc/pam.d/sudo file:

#%PAM-1.0\n\n@include common-auth\n@include common-account


The [link|http://craige.mcwhirter.com.au/blog/archive/2005/01/17/making_a_debian_or_ubuntu_mach|directions] I'm using read this:

$ sudo vi /etc/pam.d/sudo


Once deep in the bowells of the sudo file, you need to add one line above the existing line, something like this:

auth    sufficient      pam_ldap.so \nauth    required        pam_unix.so


My current sudo file reads something like this:

#%PAM-1.0\n\nauth    sufficient      pam_ldap.so\nauth    required        pam_unix.so\n\n@include common-auth\n@include common-account


I'm checking out any docs I can find, but does this look wrong to you guys?