#!/bin/bash

PAM=`find /etc/pam.d -exec grep -i casa \{\} \;`
if [ "$PAM" != "" ]; then
    exit 0
else
    exit 1
fi