Resolving Bug 222012 to allow the scripts called from yast to recognize the SLES server so the won't modigy the PAM stack.

This commit is contained in:
Cameron (Kamran) Mashayekhi 2006-12-05 11:16:10 +00:00
parent d2961b73ca
commit 40f5250684
2 changed files with 73 additions and 61 deletions

View File

@ -1,5 +1,10 @@
#!/bin/bash
# Adding CASA pam entries to pam files.
# Adding CASA pam entries to pam files only on the desktop.
DESKTOP=`grep -i desktop SuSE-release`
if [ "$DESKTOP" != "" ]
then
rm -f *.rpmsave
prefix="/etc/pam.d"
@ -55,3 +60,6 @@ do
sed -i "0,/^password/s/^\(password.*\)/\1\n$passwd_entry/" $password_file
fi
done
fi

View File

@ -1,5 +1,9 @@
#!/bin/bash
# Remove the CASA pam entries from pam files.
DESKTOP=`grep -i desktop SuSE-release`
if [ "$DESKTOP" != "" ]
then
prefix="/etc/pam.d"
for pam_file in "$prefix/login" "$prefix/sshd" "$prefix/xdm" "$prefix/gdm" "$prefix/kdm" "$prefix/passwd" "$prefix/gnome-passwd"
@ -9,4 +13,4 @@ do
sed -i '/pam_micasa/d' $pam_file
fi
done
fi