# HG changeset patch # User igor@manas.xt.vpn # Date 1219084034 -10800 # Node ID cbd4d942d0595ba7e65e0c981b4fb8b23652e22a # Parent a428be6d690b5b52a78361bc73bb82602e634042 .py eliminated in script calling diff -r a428be6d690b -r cbd4d942d059 init.d-xen-drbd --- a/init.d-xen-drbd Mon Aug 18 13:46:20 2008 +0300 +++ b/init.d-xen-drbd Mon Aug 18 21:27:14 2008 +0300 @@ -8,12 +8,12 @@ case $1 in start) - $XEN_DRBD_PATH/xen-drbd-install.py ${TOPOLOGY_NAME} make-links | sh -s + $XEN_DRBD_PATH/xen-drbd-install ${TOPOLOGY_NAME} make-links | sh -s if [ -z "$START_ACTION" ] || echo $START_ACTION | grep -qix nothing then true else - $XEN_DRBD_PATH/xen-drbd.py $START_ACTION + $XEN_DRBD_PATH/xen-drbd $START_ACTION fi ;; stop) @@ -21,7 +21,7 @@ then true else - $XEN_DRBD_PATH/xen-drbd.py $STOP_ACTION + $XEN_DRBD_PATH/xen-drbd $STOP_ACTION fi ;; *)