9 lines
118 B
Bash
9 lines
118 B
Bash
#!/bin/bash
|
|
|
|
PAM=`find /etc/pam.d -exec grep -i casa \{\} \;`
|
|
if [ "$PAM" != "" ]; then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|