aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rw-r--r--etc/Makefile.am3
-rw-r--r--etc/describe-snapshot-attribute.fln28
-rw-r--r--etc/modify-snapshot-attribute.fln22
-rw-r--r--etc/reset-snapshot-attribute.fln22
4 files changed, 75 insertions, 0 deletions
diff --git a/etc/Makefile.am b/etc/Makefile.am
index 6da6510..5ff4533 100644
--- a/etc/Makefile.am
+++ b/etc/Makefile.am
@@ -33,6 +33,7 @@ FLNFILES=\
describe-instances.fln\
describe-regions.fln\
describe-security-groups.fln\
+ describe-snapshot-attribute.fln\
describe-snapshots.fln\
describe-tags.fln\
describe-volumes.fln\
@@ -40,8 +41,10 @@ FLNFILES=\
disassociate-address.fln\
get-console-output.fln\
modify-instance-attribute.fln\
+ modify-snapshot-attribute.fln\
reboot-instances.fln\
release-address.fln\
+ reset-snapshot-attribute.fln\
start-instances.fln\
stop-instances.fln
diff --git a/etc/describe-snapshot-attribute.fln b/etc/describe-snapshot-attribute.fln
new file mode 100644
index 0000000..0e71d38
--- /dev/null
+++ b/etc/describe-snapshot-attribute.fln
@@ -0,0 +1,28 @@
+/* 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/>. */
+
+if (.DescribeSnapshotAttributeResponse) {
+ print(last.snapshotId);
+ if (.DescribeSnapshotAttributeResponse.createVolumePermission.item) {
+ for (var in .DescribeSnapshotAttributeResponse.createVolumePermission.item) {
+ if (var.userId)
+ print(" ", var.userId);
+ else if (var.group)
+ print(" g=", var.group);
+ }
+ }
+ print("\n");
+} \ No newline at end of file
diff --git a/etc/modify-snapshot-attribute.fln b/etc/modify-snapshot-attribute.fln
new file mode 100644
index 0000000..6d00e7a
--- /dev/null
+++ b/etc/modify-snapshot-attribute.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 (.ModifySnapshotAttributeResponse.return) {
+ if (!.ModifySnapshotAttributeResponse.return[true]) {
+ error("Return: ",.ModifySnapshotAttributeResponse.return,"\n");
+ exit(1);
+ }
+}
diff --git a/etc/reset-snapshot-attribute.fln b/etc/reset-snapshot-attribute.fln
new file mode 100644
index 0000000..059ffed
--- /dev/null
+++ b/etc/reset-snapshot-attribute.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 (.ResetSnapshotAttributeResponse.return) {
+ if (!.ResetSnapshotAttributeResponse.return[true]) {
+ error("Return: ",.ResetSnapshotAttributeResponse.return,"\n");
+ exit(1);
+ }
+}

Return to:

Send suggestions and report system problems to the System administrator.