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
Open remctl pipes in parallel.
[invirt/packages/invirt-remote.git]
/
files
/
usr
/
sbin
/
sipb-xen-remote-proxy
diff --git
a/files/usr/sbin/sipb-xen-remote-proxy
b/files/usr/sbin/sipb-xen-remote-proxy
index
4a1364e
..
2b62ca9
100755
(executable)
--- a/
files/usr/sbin/sipb-xen-remote-proxy
+++ b/
files/usr/sbin/sipb-xen-remote-proxy
@@
-1,5
+1,12
@@
#!/bin/sh
# invoke as sipb-xen-remote-proxy-$TYPE, with "TYPE" in the remctl sense.
#!/bin/sh
# invoke as sipb-xen-remote-proxy-$TYPE, with "TYPE" in the remctl sense.
-kinit -k host/sipb-vm-58.mit.edu
+klist -s || kinit -k host/remote.mit.edu
#echo remctl black-mesa remote ${0##*-} "$@"
#echo remctl black-mesa remote ${0##*-} "$@"
-remctl black-mesa remote ${0##*-} "$@"
+if false ; then
+ remctl black-mesa remote ${0##*-} "$@"
+else
+ case "$1" in
+ listvms ) shift; sipb-xen-remote-listvms "$@" ;;
+ * ) remctl black-mesa remote ${0##*-} "$@" ;;
+ esac
+fi