# Remove the Novell Integrated Login pam entries from pam files.
# note: CASA also includes login and sshd files which the Integrated Login does not include
for pam_file in "/etc/pam.d/xdm" "/etc/pam.d/gdm" "/etc/pam.d/kdm"
do
	if [ -f $pam_file ]
 	then
  		sed -i '/pam_ncl_autologin/d' $pam_file
 	fi
done

