summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominique Martinet <asmadeus@codewreck.org>2010-08-11 23:39:07 +0200
committerDominique Martinet <asmadeus@codewreck.org>2010-08-11 23:39:07 +0200
commite2fd17e9c8fd967e84f7020d80a192196a6f24b1 (patch)
tree31c28b1c2fb19044365b364206d066b8870114a2
parent7c097e8d6c69db6fa571ca1bbc0b53018cee3fc0 (diff)
parentb8a187a7a8f160228a80f477f1b605615952b01c (diff)
Merge branch 'work' into CTI
-rwxr-xr-xkvm-wrapper.sh13
1 files changed, 8 insertions, 5 deletions
diff --git a/kvm-wrapper.sh b/kvm-wrapper.sh
index eea745b..8811a00 100755
--- a/kvm-wrapper.sh
+++ b/kvm-wrapper.sh
@@ -820,25 +820,28 @@ function print_help ()
echo
echo -e "Flags are :"
echo -e " -m size, --mem size: Specify how much RAM you want the system to have"
- echo -e " -s size, --size size: Specify how big the disk should be"
+ echo -e " -s size, --size size: Specify how big the disk should be in MB"
echo -e " -e, --edit: If you want to edit the descriptor after autoconfiguration"
echo -e " -c num, --cpu num: Number of cpu the system should have"
+ echo -e " --swap size: Size of the swap in MB"
echo
echo -e " More to come ?"
;;
*)
echo -e "Usage: $SCRIPT_NAME {start|screen|stop} virtual-machine"
echo -e " $SCRIPT_NAME {attach|monitor|serial} virtual-machine"
- echo -e " $SCRIPT_NAME rundisk disk-image"
+ echo -e " $SCRIPT_NAME {save-state|load-state} virtual-machine"
+ echo -e " $SCRIPT_NAME migrate dest-node virtual-machine"
echo -e ""
echo -e " $SCRIPT_NAME status [virtual-machine]"
echo -e " $SCRIPT_NAME list"
echo
+ echo -e " $SCRIPT_NAME balloon target_RAM virtual-machine"
echo -e " $SCRIPT_NAME create [flags] virtual-machine #for flag list, try $SCRIPT_NAME help create"
- echo -e " $SCRIPT_NAME create-disk virtual-machine [diskimage [size]]"
- echo -e " $SCRIPT_NAME bootstrap virtual-machine distribution"
- echo -e " $SCRIPT_NAME remove virtual-machine"
+ echo -e " $SCRIPT_NAME create-desc virtual-machine [diskimage [size]]"
+ echo -e " $SCRIPT_NAME bootstrap virtual-machine"
echo -e " $SCRIPT_NAME edit virtual-machine"
+ echo -e " $SCRIPT_NAME remove virtual-machine"
;;
esac
exit 2