dcac451403b21cf339f064d72bfb4eeaf07b0f63
[invirt/packages/invirt-remote.git] / host / usr / sbin / invirt-remote
1 #!/bin/sh
2 # invirt-remote TYPE SERVICE [ARGS...]
3 #
4 # We carry out the remctl command proxied to us by the remote-control server.
5
6 TYPE="$1"
7 SERVICE="$2"
8 shift; shift;
9
10 case "$TYPE" in
11     control)
12         # $SERVICE is hostname
13         COMMAND=/usr/sbin/invirt-vmcontrol
14         ;;
15     web)
16         case "$SERVICE" in
17             lvcreate|lvremove|lvrename|lvresize)
18                 COMMAND=/usr/sbin/invirt-lvm
19                 ;;
20             listvms)
21                 COMMAND=/usr/sbin/invirt-listvms
22                 ;;
23             info)
24                 exec /usr/sbin/xm info
25                 ;;
26             vnccert)
27                 COMMAND=/usr/bin/invirt-vnc-getcert
28                 ;;
29             *)
30                 echo "ERROR: invalid subcommand"
31                 exit 34
32                 ;;
33         esac
34         ;;
35     *)
36         echo "ERROR: invalid command"
37         exit 34
38         ;;
39 esac
40
41 exec "$COMMAND" "$SERVICE" "$@"