Fix for bug 245537 and updates to CASA.changes.

Update to yast2-CASA.changes for bug 205355.
This commit is contained in:
Cameron (Kamran) Mashayekhi 2007-03-07 22:07:02 +00:00
parent e9d03d857a
commit 27a4acbb83
3 changed files with 25 additions and 3 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Mar 07 14:29:03 MST 2007 - cmashayekhi@novell.com
- Bug 245537. Fixed iscasaconfigured script to run on SLES & OES.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 27 12:52:05 MST 2007 - jnorman@novell.com Tue Feb 27 12:52:05 MST 2007 - jnorman@novell.com

View File

@ -1,9 +1,12 @@
#!/bin/bash #!/bin/bash
set -x set -x
# #
CFG=`rpm -qa |grep -i ^casa-[1-9]` DESKTOP=`grep -i desktop /etc/SuSE-release`
if [ "$CFG" != "" ] INS=`rpm -qa |grep ^CASA-[1-9]`
if [ "$INS" != "" ]
then then
if [ "$DESKTOP" != "" ]
then
PAM=`find /etc/pam.d -exec grep -i casa \{\} \;` PAM=`find /etc/pam.d -exec grep -i casa \{\} \;`
if [ "$PAM" != "" ] if [ "$PAM" != "" ]
then then
@ -11,8 +14,17 @@ then
else else
exit 1 exit 1
fi fi
else
CONFIGED=`chkconfig --list | grep -i micasad | grep -i on`
if [ "$CONFIGED" == "" ]
then
exit 1
else
exit 0
fi
fi
else else
exit 1 exit 0
fi fi

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Mar 07 14:43:33 MST 2006 - cmashayekhi@novell.com
- Bug 205355 : Changed the buttons' labels to "Enabled" & "Disabled".
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 21 11:40:30 MST 2006 - schoi@novell.com Tue Nov 21 11:40:30 MST 2006 - schoi@novell.com