全球主机交流论坛

标题: 共享一个XENSERVER的BASH... [打印本页]

作者: vpsoffer.com    时间: 2010-1-13 01:35
标题: 共享一个XENSERVER的BASH...
迅速清除VM的C盘.以模板系统的C盘代替..
其它盘不用动..
其效果..可想而知...
  1. #!/bin/sh
  2. #reset driver C
  3. #write by bendy 67052 [at] qq.com

  4. if [ -z "${XE}" ]; then
  5.   XE=xe
  6. fi

  7. # Check there's a vm uuid parameter to the command
  8. if [ $# -ne 1 ]; then
  9.         echo "usage: $0 <vm_uuid_to_reset>"
  10.         exit 1
  11. fi
  12. vmuuid=$1

  13. # Check if there's a VM by the uuid specified
  14. ${XE} vm-list params=uuid | grep -q " ${vmuuid}$"
  15. if [ $? -ne 0 ]; then
  16.         echo "error: no vm uuid "${vmuuid}" found"
  17.         exit 2
  18. fi

  19. # Check the power state of the vm
  20. name=$(${XE} vm-list uuid=${vmuuid} params=name-label --minimal)
  21. state=$(${XE} vm-list uuid=${vmuuid} params=power-state --minimal)
  22. wasrunning=0

  23. # If the VM state is running, we shutdown the vm first
  24. if [ "${state}" = "running" ]; then
  25.         ${XE} vm-shutdown uuid=${vmuuid}
  26.         ${XE} event-wait class=vm power-state=halted uuid=${vmuuid}
  27.         wasrunning=1
  28. fi

  29. # destroy OLD C
  30. ${XE} vbd-destroy uuid=`${XE} vbd-list vm-uuid=${vmuuid} device=hda | /usr/bin/perl -e 'while (<STDIN>) { if (/^uuid.* ([^ ]*)$/) { $uuid = $1; } } print "$uuid";'`
  31. #echo "destroy ok"

  32. # get drivce c uuid
  33. viduuid=$(${XE} vbd-list device=hda  | /usr/bin/perl -e 'while (<STDIN>) { if (/vdi-uuid.* ([^ ]*)$/) { $uuid = $1; } if ( $find ) { last;} if (/vm-name-label \( RO\): win/) { $find="yes" } } print "$uuid";')
  34. #echo ${viduuid}

  35. # clone driver C
  36. newviduuid=$(${XE} vdi-clone new-name-label=clone uuid=${viduuid})
  37. #echo "${newviduuid}"

  38. # inst new vbd
  39. ${XE} vbd-create vm-uuid=${vmuuid} device=hda vdi-uuid=${newviduuid} bootable=true type=Disk mode=RW
复制代码

[ 本帖最后由 vpsoffer.com 于 2010-1-13 01:37 编辑 ]
作者: cpuer    时间: 2010-1-13 01:39
标题: 回复 1# 的帖子
大晚上的都在呢
作者: vpsoffer.com    时间: 2010-1-13 01:40
刚写好的东西..就共享到你的论坛了..看我多支持你...
作者: vpsoffer.com    时间: 2010-1-13 01:42
不过这东西..我还是有一点点的保留.....看不懂的就算了...

同行竞争大啊....原谅我小小的自私
作者: cpuer    时间: 2010-1-13 11:47
标题: 回复 4# 的帖子
额,我看不懂。




欢迎光临 全球主机交流论坛 (https://sunk.eu.org/) Powered by Discuz! X3.4