1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

correct problem with pam config install

This commit is contained in:
Gerald Carter 0001-01-01 00:00:00 +00:00
parent 1742780dd6
commit c368defc05

View File

@ -285,16 +285,13 @@ else
rm -f /etc/samba/samba.xinetd
fi
# Install the correct version of the samba pam file, depending on pam version.
# (always keep an existing PAM config file)
if [ ! -f /lib/security/pam_stack.so ]; then
if [ -f /lib/security/pam_stack.so ]; then
echo "Installing stack version of /etc/pam.d/samba..."
mv /etc/samba/samba.stack /etc/pam.d/samba
else
echo "Installing non-stack version of /etc/pam.d/samba..."
rm -f /etc/samba/samba.stack
fi
# Install the correct version of the samba pam file
if [ -f /lib/security/pam_stack.so ]; then
echo "Installing stack version of /etc/pam.d/samba..."
mv /etc/samba/samba.stack /etc/pam.d/samba
else
echo "Installing non-stack version of /etc/pam.d/samba..."
rm -f /etc/samba/samba.stack
fi
## call ldconfig to create the version symlink for libsmbclient.so