10 lines
229 B
Plaintext
10 lines
229 B
Plaintext
|
# 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
|
||
|
|