cryptonas-archive/v0.2/cbox-tree.d/etc/init.d/cb-network.sh

27 lines
328 B
Bash
Raw Normal View History

2005-10-05 02:51:03 +02:00
#!/bin/sh
set -eu
# parse config file
. /etc/cryptobox/cryptobox.conf
ACTION=help
[ $# -gt 0 ] && ACTION="$1"
case "$ACTION" in
start )
$CB_SCRIPT network-up
;;
stop )
$CB_SCRIPT network-down
;;
restart )
$0 stop
$0 start
;;
* )
echo "Syntax: `basename $0` { start | stop | restart }"
echo
;;
esac