xen-drbd
annotate xen-scripts-network-xen-drbd @ 37:e80bdf496aa2
1. --network (-n) option; topology name is not hardcoded since present
2. fix for incorrect processing of the paramater spicified in form like drbd8=sda1 in xen-drbd-install
2. fix for incorrect processing of the paramater spicified in form like drbd8=sda1 in xen-drbd-install
| author | igor@manas.xt.vpn | 
|---|---|
| date | Mon Sep 15 10:03:24 2008 +0300 (2008-09-15) | 
| parents | fc201b0bc6f9 | 
| children | ff5eebae3437 | 
| 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@34 | 9 $XEN_DRBD_PATH/xen-drbd-install ${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 | 
