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