diff options
author | Jon Robertson <jonrober@stanford.edu> | 2015-02-18 15:17:51 -0800 |
---|---|---|
committer | Jon Robertson <jonrober@stanford.edu> | 2015-06-08 15:24:34 -0700 |
commit | 000b338694fae87996220336678fe990a1c3e3e1 (patch) | |
tree | 5266498e6c4024d56c8afc0afc5677de590fad8e /client | |
parent | 1575e25c9e9edc8d577a0f1118732c98871984e0 (diff) |
Added new method for wallet-backend, update
update will work generally like get, but only for objects that have a
concept of updating content automatically, like keytabs and passwords.
For these, the content will be updated before sending to the client.
In a later release get for keytabs will be modified to never update the
kvno before sending to the user, and so the unchanging flag will be
phased out in lieu of explicitly using the method that does what you
want.
Change-Id: I96a84416c5e50278eb29fe07052dde6e063bc071
Diffstat (limited to 'client')
-rw-r--r-- | client/wallet.pod | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/client/wallet.pod b/client/wallet.pod index 20d1874..672f0e4 100644 --- a/client/wallet.pod +++ b/client/wallet.pod @@ -385,6 +385,19 @@ If an object with type <type> and name <name> does not already exist when this command is issued (as checked with the check interface), B<wallet> will attempt to automatically create it (using autocreate). +=item update <type> <name> + +Prints to standard output the data associated with the object identified +by <type> and <name>, or stores it in a file if the B<-f> option was +given. This will generate new data in the object, and only works for +objects that support generating new data automatically, such as keytabs or +passwords. Types that do not support generating new data will fail and +direct you to use get instead. + +If an object with type <type> and name <name> does not already exist when +this command is issued (as checked with the check interface), B<wallet> +will attempt to automatically create it (using autocreate). + =back =head1 ATTRIBUTES |