aboutsummaryrefslogtreecommitdiff
path: root/src/cpsnap-cl.opt
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2013-04-23 22:39:55 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2013-04-23 22:52:39 +0300
commitafc70c70f2f078d18964c81a98dfb5d4ef519ec3 (patch)
tree24c666c5b2d7052618066d299133b1fce809f870 /src/cpsnap-cl.opt
parent242c88381ec13fb81a5b36f50c19bf4fc3881dd6 (diff)
downloadeclat-afc70c70f2f078d18964c81a98dfb5d4ef519ec3.tar.gz
eclat-afc70c70f2f078d18964c81a98dfb5d4ef519ec3.tar.bz2
Implement copy-image and copy-snapshot.
* TODO: Update. * lib/libeclat.h (EC2_API_VERSION): Update. * src/Makefile.am: Add new file. * src/cpimg-cl.opt: New file. * src/cpimg.c: New file. * src/cpsnap-cl.opt: New file. * src/cpsnap.c: New file. * src/eclat.c (cmdtab): Add new commands. * src/eclat.h (eclat_copy_image) (eclat_copy_snapshot): New protos. * etc/copy-snapshot.fln: New file. * etc/copy-image.fln: New file. * etc/Makefile.am (FLNFILES): Add copy-image.fln
Diffstat (limited to 'src/cpsnap-cl.opt')
-rw-r--r--src/cpsnap-cl.opt47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/cpsnap-cl.opt b/src/cpsnap-cl.opt
new file mode 100644
index 0000000..be3adaa
--- /dev/null
+++ b/src/cpsnap-cl.opt
@@ -0,0 +1,47 @@
+/* This file is part of Eclat.
+ Copyright (C) 2013 Sergey Poznyakoff.
+
+ Eclat is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3, or (at your option)
+ any later version.
+
+ Eclat is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Eclat. If not, see <http://www.gnu.org/licenses/>. */
+
+char *region;
+char *image;
+char *descr;
+
+OPTIONS_BEGIN("eclat copy-snapshot",
+ [<copy snapshot from another region>],
+ [<REGION SNAP-ID>],
+ [<gnu>])
+
+OPTION(description,d,[<descr>],
+ [<description for the new image>])
+BEGIN
+ descr = optarg;
+END
+
+OPTIONS_END
+
+static void
+parse_options(int argc, char *argv[])
+{
+ int idx;
+
+ GETOPT(argc, argv, idx, exit(EX_USAGE))
+ argc -= idx;
+ argv += idx;
+ if (argc != 2)
+ die(EX_USAGE, "bad number of arguments");
+ translate_ids(1, argv+1, "SnapshotId");
+ region = argv[0];
+ image = argv[1];
+}

Return to:

Send suggestions and report system problems to the System administrator.