xen-drbd

view xen-scripts-network-xen-drbd @ 10:c14b6387ada5

show usage fixed
author igor
date Tue Feb 12 13:41:24 2008 +0200 (2008-02-12)
parents
children fc201b0bc6f9
line source
1 #!/bin/sh
3 XEN_DRBD_PATH='/usr/bin'
4 TOPOLOGY_NAME='xen-drbd'
5 [ -e /etc/default/xen-drbd ] && . /etc/default/xen-drbd
7 case $1 in
8 start)
9 $XEN_DRBD_PATH/xen-drbd-install.py ${TOPOLOGY_NAME} make-bridges | sh -s
10 ;;
11 stop)
12 ;;
13 *)
14 echo $0 'start|stop'
15 ;;
16 esac