0e2f327e7c
Fix for circular dependency between CASA and Gnome Keyring. Fix for yast grey out button.
19 lines
204 B
Bash
Executable File
19 lines
204 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
#
|
|
CFG=`rpm -qa |grep -i ^casa-[1-9]`
|
|
if [ "$CFG" != "" ]
|
|
then
|
|
PAM=`find /etc/pam.d -exec grep -i casa \{\} \;`
|
|
if [ "$PAM" != "" ]
|
|
then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|
|
else
|
|
exit 1
|
|
fi
|
|
|
|
|