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