CASA.spec was corrected and pam scripts were moved to spec file instead of start up script.

This commit is contained in:
Cameron (Kamran) Mashayekhi
2006-02-08 23:14:01 +00:00
parent 145bb76e6c
commit 7d1f7c9ed7
5 changed files with 66 additions and 54 deletions

View File

@@ -0,0 +1,9 @@
# Remove the CASA pam entries from pam files.
for pam_file in "/etc/pam.d/login" "/etc/pam.d/sshd" "/etc/pam.d/xdm" "/etc/pam.d/gdm" "/etc/pam.d/kdm"
do
if [ -f $pam_file ]
then
sed -i '/pam_micasa/d' $pam_file
fi
done