11 lines
169 B
Plaintext
11 lines
169 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
rc-update del micasad
|
||
|
rc-update add micasad default
|
||
|
/usr/sbin/casacfgpam
|
||
|
if [ $? != 0 ]; then
|
||
|
exit $?
|
||
|
else
|
||
|
/etc/init.d/micasad restart
|
||
|
exit 0
|
||
|
fi
|