Następna strona Poprzednia strona Spis treści

6. PODZIÊKOWANIA

Niżej wymienieni ludzie przyczynili siê do powstania tego dokumentu: Topher Hughes z Dickinson College, Elie Rosenblum z Montgomery Blair High School, Mario D. Santana z Florida State University, Daniel P Zepeda i Olaf Kirch.

====================[początek pliku cfsfs]======================
#!/bin/sh
#
# $Header: /Secure/secure-doc/linux/CFS/RCS/CFS-Doc,v 1.
4 1996/03/15 04:49:37 alex Exp alex $
#
# cfsfs Kryptograficzny System Plików
#
# Autor: Alexander O. Yuriev <alex@bach.cis.temple.edu>
#
# Derived from cron
# Source function library.

. /etc/rc.d/init.d/functions

# See how we were called.

case "$1" in
 start)
        echo -n "Uruchamianie Kryptograficznego Systemu Plików: "
        if [ -x /usr/local/sbin/cfsd ]; then
                /usr/local/sbin/cfsd > /dev/null
                /bin/mount -o port=3049,intr localhost:/.cfsfs /securefs
                echo "done"
        else 
         echo -n "Nie zainstalowano poprawnie Kryptograficznego Systemu Plików"
        fi
        touch /var/lock/subsys/cfsfs
        ;;
 stop)
        echo -n "Zamykanie Kryptograficznego Systemu Plików: "
        umount /securefs
        killproc cfsd
        echo
        rm -f /var/lock/subsys/cfsfs
        ;;
 *)
        echo "Użycie: cfsfs {start|stop}"
        exit 1
esac

exit 0

====================[koniec pliku cfsfs]======================


Następna strona Poprzednia strona Spis treści