projects
/
invirt/packages/invirt-remote.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Make lvcreate-all work.
[invirt/packages/invirt-remote.git]
/
files
/
usr
/
sbin
/
dispatch.sh
diff --git
a/files/usr/sbin/dispatch.sh
b/files/usr/sbin/dispatch.sh
index
7abf70d
..
5f1a063
100755
(executable)
--- a/
files/usr/sbin/dispatch.sh
+++ b/
files/usr/sbin/dispatch.sh
@@
-10,20
+10,20
@@
# need them for this script.
ACTION=$(echo "$0" | awk -F'.' '{print $2}')
# need them for this script.
ACTION=$(echo "$0" | awk -F'.' '{print $2}')
-MACHINE="$1"
+ORIGMACHINE="$1"
+MACHINE="d_$ORIGMACHINE"
case "$ACTION" in
list|vcpu-list|destroy|create|uptime|shutdown)
xm "$ACTION" "$MACHINE"
case "$ACTION" in
list|vcpu-list|destroy|create|uptime|shutdown)
xm "$ACTION" "$MACHINE"
- exit 0
;;
reboot-with-cdrom)
xm shutdown "$MACHINE"
;;
reboot-with-cdrom)
xm shutdown "$MACHINE"
- xm create sipb-database machine_name="$MACHINE" cdrom_image="$2"
+ xm create sipb-database machine_name="$ORIGMACHINE" cdrom_image="$2"
;;
reboot)
if [ -n "$2" ]; then
;;
reboot)
if [ -n "$2" ]; then
- /usr/sbin/dispatch.reboot-with-cdrom.sh "$1" "$2" &
+ /usr/sbin/dispatch.reboot-with-cdrom.sh "$ORIGMACHINE" "$2" &
else
xm reboot "$MACHINE"
fi
else
xm reboot "$MACHINE"
fi