aboutsummaryrefslogtreecommitdiff
path: root/etc/describe-snapshot-attribute.fln
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2013-01-22 23:57:57 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2013-01-23 00:31:11 +0200
commit01151a67eb86c9068612b7f893e586f04f634aee (patch)
treef055071e3fe17393412aaf699fcf8ea07172dc4e /etc/describe-snapshot-attribute.fln
parent78911bb500c8fc104de45564543b56f317a42938 (diff)
downloadeclat-01151a67eb86c9068612b7f893e586f04f634aee.tar.gz
eclat-01151a67eb86c9068612b7f893e586f04f634aee.tar.bz2
Implement snapshot attribute commands.
* TODO: Update. * etc/describe-snapshot-attribute.fln: New file. * etc/modify-snapshot-attribute.fln: New file. * etc/reset-snapshot-attribute.fln: New file. * etc/Makefile.am: Add new files. * src/dscrsnapattr.c: New file. * src/Makefile.am: Add new files. * src/dscrinstattr.c (list_attrs): Remove. (eclat_describe_instance_attribute): Assign available_attrs. * src/eclat.c (cmdtab): New commands: describe-snapshot-attribute, modify-snapshot-attribute, and reset-snapshot-attribute. * src/eclat.h (eclat_describe_snapshot_attribute) (eclat_modify_snapshot_attribute) (eclat_reset_snapshot_attribute): New protos. (available_attrs): New extern. (list_attrs): New function. * src/modinstattr.c (list_attrs): Rename to list_mod_attrs. * src/util.c (available_attrs): New global. (list_attrs): New function.
Diffstat (limited to 'etc/describe-snapshot-attribute.fln')
-rw-r--r--etc/describe-snapshot-attribute.fln28
1 files changed, 28 insertions, 0 deletions
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 @@
1/* This file is part of Eclat.
2 Copyright (C) 2013 Sergey Poznyakoff.
3
4 Eclat is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3, or (at your option)
7 any later version.
8
9 Eclat is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with Eclat. If not, see <http://www.gnu.org/licenses/>. */
16
17if (.DescribeSnapshotAttributeResponse) {
18 print(last.snapshotId);
19 if (.DescribeSnapshotAttributeResponse.createVolumePermission.item) {
20 for (var in .DescribeSnapshotAttributeResponse.createVolumePermission.item) {
21 if (var.userId)
22 print(" ", var.userId);
23 else if (var.group)
24 print(" g=", var.group);
25 }
26 }
27 print("\n");
28} \ No newline at end of file

Return to:

Send suggestions and report system problems to the System administrator.