xen-drbd
annotate xen-scripts-network-xen-drbd @ 30:fc4025aa8287
stripped .py suffixes in file names
author | igor |
---|---|
date | Sun Jun 29 15:47:02 2008 +0300 (2008-06-29) |
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 |