summaryrefslogblamecommitdiff
path: root/japanese/Canna/files/canna.sh.in
blob: 1595ca688f9f457e924aa094a78b1f25090174d9 (plain) (tree)
1
2
3
4
5
6
7
         
 
                

                                                             
                       
 




                                                             


            



                                                   
                                                                         
          
          
     
                                                    







                                                    
#!/bin/sh

OPTIONS="-u bin"
# Uncomment the following if you want to use a TCP connection
# instead of a UNIX domain socket.
#OPTIONS="-u bin -inet"

if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/${0##*/}\$"); then
    echo "$0: Cannot determine the PREFIX" >&2
    exit 64
fi


case "$1" in
start)
	if [ -x ${PREFIX}/sbin/cannaserver ]; then
		@RM@ -f /tmp/.iroha_unix/IROHA
		@TOUCH@ /var/log/CANNA0msgs
		@CHOWN@ bin:bin /var/log/CANNA0msgs
		${PREFIX}/sbin/cannaserver ${OPTIONS} && echo -n ' canna'
	fi
	;;
stop)
	${PREFIX}/sbin/cannakill && echo -n ' canna'
	;;
*)
	echo "Usage: `basename $0` {start|stop}" >&2
	exit 64
	;;
esac

exit 0