13 lines
176 B
Plaintext
13 lines
176 B
Plaintext
|
#!/bin/bash
|
||
|
#disable the service
|
||
|
insserv -r /etc/init.d/micasad
|
||
|
# uninstall PAM modules
|
||
|
(/usr/sbin/casaucfgpam)
|
||
|
RCODE=$?
|
||
|
if(test $RCODE != 0)
|
||
|
then
|
||
|
exit $RCODE
|
||
|
else
|
||
|
exit 0
|
||
|
fi
|