aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2013-12-19 22:54:20 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2013-12-19 23:03:45 +0200
commit8d43103165e7e2f16c10d0592e5a51d86dac01ed (patch)
treec479c34f16e8a1d989fb95af462e47c318565cd8 /etc
parent2a69cacdfe3f43c61c65ea4359c821236b7f141c (diff)
downloadeclat-8d43103165e7e2f16c10d0592e5a51d86dac01ed.tar.gz
eclat-8d43103165e7e2f16c10d0592e5a51d86dac01ed.tar.bz2
Implement security group creation and deletion.
* doc/eclat-lssg.1: New file. * doc/eclat-sg.1: New file. * doc/Makefile.inc: Add new files. * etc/create-security-group.fln: New file. * etc/delete-security-group.fln: New file. * etc/Makefile.am: Add new files. * src/mksg-cl.opt: New file. * src/mksg.c: New file. * src/rmsg-cl.opt: New file. * src/rmsg.c: New file. * src/sg.h: New file. * src/Makefile.am: Add new files. * src/eclat.c (cmdtab): New commands "mksg" and "rmsg". * src/eclat.h (eclat_create_security_group) (eclat_delete_security_group): New protos. * src/lssg.c: Include sg.h. Use groupkw instead of the static rt[], which is removed. * src/sg-cl.opt: Use groupkw * src/sg.c (groupkw): New global. * TODO: Update.
Diffstat (limited to 'etc')
-rw-r--r--etc/Makefile.am2
-rw-r--r--etc/create-security-group.fln23
-rw-r--r--etc/delete-security-group.fln22
3 files changed, 47 insertions, 0 deletions
diff --git a/etc/Makefile.am b/etc/Makefile.am
index caa780c..c62369b 100644
--- a/etc/Makefile.am
+++ b/etc/Makefile.am
@@ -23,9 +23,11 @@ FLNFILES=\
copy-image.fln\
copy-snapshot.fln\
create-image.fln\
+ create-security-group.fln\
create-snapshot.fln\
create-tags.fln\
create-volume.fln\
+ delete-security-group.fln\
delete-snapshot.fln\
delete-tags.fln\
delete-volume.fln\
diff --git a/etc/create-security-group.fln b/etc/create-security-group.fln
new file mode 100644
index 0000000..06d021d
--- /dev/null
+++ b/etc/create-security-group.fln
@@ -0,0 +1,23 @@
+/* This file is part of Eclat.
+ Copyright (C) 2012, 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/>. */
+
+if (.CreateSecurityGroupResponse.return) {
+ if (!.CreateSecurityGroupResponse.return[true]) {
+ print("Return: ",.CreateSecurityGroupResponse.return,"\n");
+ exit(1);
+ } else
+ print(.CreateSecurityGroupResponse.groupId,"\n");
+}
diff --git a/etc/delete-security-group.fln b/etc/delete-security-group.fln
new file mode 100644
index 0000000..ca1c611
--- /dev/null
+++ b/etc/delete-security-group.fln
@@ -0,0 +1,22 @@
+/* This file is part of Eclat.
+ Copyright (C) 2012, 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/>. */
+
+if (.DeleteSecurityGroupResponse.return) {
+ if (!.DeleteSecurityGroupResponse.return[true]) {
+ print("Return: ",.DeleteSecurityGroupResponse.return,"\n");
+ exit(1);
+ }
+}

Return to:

Send suggestions and report system problems to the System administrator.