FreeBSD IIP startup script

"Dmitriy Shnayder" <[email protected]> Sat, 26 Apr 2003 20:57:58 +0000 (UTC)
Newsgroups gmane.comp.security.invisiblenet.iip.devel
Message-ID <[email protected]>
The script below is for those of you who are using IIP with FreeBSD. It runs IIP in the background when you boot your computer, and halts it when you shut down the computer.

To use the script, place it into the file /usr/local/etc/rc.d/isproxy.sh. It should run the next time you boot.
-----Begin script-----
#!/bin/sh
case "$1" in
        start)
                /usr/local/bin/isproxy -Q
                echo " iip"
                ;;
        stop)
                /usr/local/bin/isproxy --kill -Q
                ;;
        *)
                echo ""
                echo "Usage: isproxy { start | stop }"
                echo ""
                exit 64
                ;;
esac
-----End script-----

!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+
CryptoMail provides free end-to-end message encryption.  
http://www.cryptomail.org/   Ensure your right to privacy.
Traditional email messages are not secure.  They are sent as
clear-text and thus are readable by anyone with the motivation
to acquire a copy.
!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+!+