xen-drbd
annotate xen-scripts-network-xen-drbd @ 26:e859a316802b
fixes + debug
author | igor |
---|---|
date | Tue Feb 19 19:11:25 2008 +0200 (2008-02-19) |
parents | b6dc3480caae |
children | a428be6d690b |
rev | line source |
---|---|
igor@0 | 1 #!/bin/sh |
igor@0 | 2 |
igor@0 | 3 XEN_DRBD_PATH='/usr/bin' |
igor@0 | 4 TOPOLOGY_NAME='xen-drbd' |
igor@0 | 5 [ -e /etc/default/xen-drbd ] && . /etc/default/xen-drbd |
igor@0 | 6 |
igor@0 | 7 case $1 in |
igor@21 | 8 start) |
igor@21 | 9 $XEN_DRBD_PATH/xen-drbd-install.py ${TOPOLOGY_NAME} make-bridges | sh -s |
igor@21 | 10 ;; |
igor@21 | 11 stop) |
igor@21 | 12 ;; |
igor@21 | 13 *) |
igor@21 | 14 echo $0 'start|stop' |
igor@21 | 15 ;; |
igor@0 | 16 esac |
igor@0 | 17 |