-
Notifications
You must be signed in to change notification settings - Fork 29
/
xenserver_fake_pvtools.sh
executable file
·53 lines (45 loc) · 1.32 KB
/
xenserver_fake_pvtools.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/sh
set -e
usage() {
echo "$0 <VM uuid>"
echo " -- fakes the presence of PV tools in <VM uuid>"
echo " -- NB the VM must be either paused or running on localhost"
}
fake(){
local uuid=$1
domid=$(xe vm-list uuid=${uuid} params=dom-id --minimal)
xenstore-write /local/domain/${domid}/attr/PVAddons/MajorVersion ${major} \
/local/domain/${domid}/attr/PVAddons/MinorVersion ${minor} \
/local/domain/${domid}/attr/PVAddons/MicroVersion ${micro} \
/local/domain/${domid}/data/updated 1
}
uuid=$(xe vm-list uuid=$1 params=uuid --minimal)
if [ $? -ne 0 ]; then
echo "Argument should be a VM uuid"
usage
exit 1
fi
# use the PRODUCT_VERSION from here:
. /etc/xensource-inventory
major=$(echo ${PRODUCT_VERSION} | cut -f 1 -d .)
minor=$(echo ${PRODUCT_VERSION} | cut -f 2 -d .)
micro=$(echo ${PRODUCT_VERSION} | cut -f 3 -d .)
# Check the VM is running on this host
resident_on=$(xe vm-list uuid=${uuid} params=resident-on --minimal)
if [ "${resident_on}" != "${INSTALLATION_UUID}" ]; then
echo "VM must be resident on this host"
exit 2
fi
power_state=$(xe vm-list uuid=${uuid} params=power-state --minimal)
case "${power_state}" in
running)
fake $uuid
;;
paused)
fake $uuid
;;
*)
echo "VM must be either running or paused"
exit 3
;;
esac