aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rw-r--r--etc/Makefile.am4
-rw-r--r--etc/create-tags.fln22
-rw-r--r--etc/delete-tags.fln22
3 files changed, 47 insertions, 1 deletions
diff --git a/etc/Makefile.am b/etc/Makefile.am
index 8c4ff75..514993c 100644
--- a/etc/Makefile.am
+++ b/etc/Makefile.am
@@ -18,13 +18,15 @@ noinst_PROGRAMS = flncat
FLNFILES=\
associate-address.fln\
- disassociate-address.fln\
+ create-tags.fln\
+ delete-tags.fln\
describe-addresses.fln\
describe-instance-attribute.fln\
describe-instance-status.fln\
describe-instances.fln\
describe-tags.fln\
describe-volumes.fln\
+ disassociate-address.fln\
get-console-output.fln\
reboot-instances.fln\
start-instances.fln\
diff --git a/etc/create-tags.fln b/etc/create-tags.fln
new file mode 100644
index 0000000..5605daf
--- /dev/null
+++ b/etc/create-tags.fln
@@ -0,0 +1,22 @@
+/* This file is part of Eclat.
+ Copyright (C) 2012 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 (.CreateTagsResponse.return) {
+ if (!.CreateTagsResponse.return[true]) {
+ error("Return: ",.CreateTagsResponse.return,"\n");
+ exit(1);
+ }
+}
diff --git a/etc/delete-tags.fln b/etc/delete-tags.fln
new file mode 100644
index 0000000..7a2c757
--- /dev/null
+++ b/etc/delete-tags.fln
@@ -0,0 +1,22 @@
+/* This file is part of Eclat.
+ Copyright (C) 2012 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 (.DeleteTagsResponse.return) {
+ if (!.DeleteTagsResponse.return[true]) {
+ error("Return: ",.DeleteTagsResponse.return,"\n");
+ exit(1);
+ }
+}

Return to:

Send suggestions and report system problems to the System administrator.