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
Add DB/LVM disk consistency checker and web/checkdisks remctl
[invirt/packages/invirt-remote.git]
/
server
/
usr
/
sbin
/
invirt-remote-proxy
diff --git
a/server/usr/sbin/invirt-remote-proxy
b/server/usr/sbin/invirt-remote-proxy
index
d84fe81
..
ca7dcf8
100755
(executable)
--- a/
server/usr/sbin/invirt-remote-proxy
+++ b/
server/usr/sbin/invirt-remote-proxy
@@
-6,25
+6,36
@@
klist -s || kinit -k
TYPE="${0##*-}"
case "$TYPE" in
control )
TYPE="${0##*-}"
case "$TYPE" in
control )
- MACHINE="$1"; SERVICE="$2"; shift; shift ;;
+ MACHINE="$1"; SERVICE="$2"; shift; shift ;;
* )
* )
- SERVICE="$1"; shift ;;
+ SERVICE="$1"; shift ;;
esac
case "$TYPE/$SERVICE" in
web/listvms )
esac
case "$TYPE/$SERVICE" in
web/listvms )
- exec invirt-remote-listvms "$@" ;;
+ invirt-remote-listvms "$@" ;;
web/vnccert )
web/vnccert )
- exec invirt-remote-vnccert "$@" ;;
+ invirt-remote-vnccert "$@" ;;
+ web/availability | web/avail )
+ invirt-remote-availability "$@" ;;
+ web/lvcreate | web/lvremove | web/lvrename | web/lvresize | web/vgcapacity | web/checkdisks )
+ invirt-remote-lvm "$SERVICE" "$@"
+ ;;
control/help )
control/help )
- exec invirt-remctl-help ;;
+ invirt-remctl-help ;;
control/create|control/install )
control/create|control/install )
- exec invirt-remote-create "$SERVICE" "$MACHINE" "$@" ;;
+ if [ -f "/etc/invirt/nocreate" ]; then
+ echo "Booting VMs is temporarily disabled for maintenance, sorry." >&2
+ exit 2
+ fi
+ invirt-remote-create "$SERVICE" "$MACHINE" "$@" ;;
control/listhost|control/list-host )
control/listhost|control/list-host )
- exec invirt-remote-listhost "$MACHINE" "$@" ;;
+ invirt-remote-listhost "$MACHINE" "$@" ;;
control/* )
control/* )
- # Everything but create must go where the VM is already running.
- exec invirt-remote-control "$MACHINE" "$SERVICE" "$@" ;;
+ # Everything but create must go where the VM is already running.
+ invirt-remote-control "$MACHINE" "$SERVICE" "$@" ;;
* )
* )
- exec remctl "$(invirt-getconf hosts.0.hostname)" remote "$TYPE" "$SERVICE" "$@" ;;
+ echo "ERROR: invalid subcommand $TYPE/$SERVICE"
+ exit 34
+ ;;
esac
esac