public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
* Cluster Project branch, master, updated. cluster-2.99.06-45-ga4abbf1
@ 2008-07-22 15:02 lhh
  0 siblings, 0 replies; only message in thread
From: lhh @ 2008-07-22 15:02 UTC (permalink / raw)
  To: cluster-cvs, cluster-devel

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cluster Project".

http://sources.redhat.com/git/gitweb.cgi?p=cluster.git;a=commitdiff;h=a4abbf1dbfd3287ae70f3177d7d878919d80373b

The branch, master has been updated
       via  a4abbf1dbfd3287ae70f3177d7d878919d80373b (commit)
      from  b08565edfaf1580ce7e8c41e95d5aeda0c794d6e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a4abbf1dbfd3287ae70f3177d7d878919d80373b
Author: Lon Hohberger <lhh@redhat.com>
Date:   Tue Jul 22 11:01:53 2008 -0400

    [rgmanager] Add optional save/restore to vm resource
    
    This patch adds optional save/restore support to virtual machines.
    Patch Federico Simoncelli federico dot simoncelli at gmail dot com

-----------------------------------------------------------------------

Summary of changes:
 rgmanager/src/resources/vm.sh |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 insertions(+), 0 deletions(-)

diff --git a/rgmanager/src/resources/vm.sh b/rgmanager/src/resources/vm.sh
index 15e1f2a..e72cbbb 100644
--- a/rgmanager/src/resources/vm.sh
+++ b/rgmanager/src/resources/vm.sh
@@ -211,6 +211,18 @@ meta_data()
             <content type="string" default="live"/>
         </parameter>
 
+	<parameter name="snapshot">
+	    <longdesc lang="en">
+	    	Path to the snapshot directory where the virtual machine
+		image will be stored.
+	    </longdesc>
+	    <shortdesc lang="en">
+	    	Path to the snapshot directory where the virtual machine
+		image will be stored.
+	    </shortdesc>
+            <content type="string" default=""/>
+        </parameter>
+
         <parameter name="depend">
             <longdesc lang="en">
 		Top-level service this depends on, in "service:name" format.
@@ -346,6 +358,8 @@ build_xm_cmdline()
 			;;
 		migrate)
 			;;
+		snapshot)
+			;;
 		*)
 			cmdline="$cmdline $varp=\"$val\""
 			;;
@@ -370,9 +384,21 @@ do_start()
 	# doesn't exist...
 	#
 	declare cmdline
+	declare snapshotimage
 
 	status && return 0
 
+	snapshotimage="$OCF_RESKEY_snapshot/$OCF_RESKEY_name"
+
+        if [ -n "$OCF_RESKEY_snapshot" -a -f "$snapshotimage" ]; then
+		eval xm restore $snapshotimage
+		if [ $? -eq 0 ]; then
+			rm -f $snapshotimage
+			return 0
+		fi
+		return 1
+	fi
+
 	cmdline="`build_xm_cmdline`"
 
 	echo "# xm command line: $cmdline"
@@ -392,6 +418,10 @@ do_stop()
 	declare -i ret=1
 	declare st
 
+	if [ -n "$OCF_RESKEY_snapshot" ]; then
+		xm save $OCF_RESKEY_name "$OCF_RESKEY_snapshot/$OCF_RESKEY_name"
+	fi
+
 	for op in $*; do
 		echo xm $op $OCF_RESKEY_name ...
 		xm $op $OCF_RESKEY_name


hooks/post-receive
--
Cluster Project


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-07-22 15:02 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-07-22 15:02 Cluster Project branch, master, updated. cluster-2.99.06-45-ga4abbf1 lhh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).