diff options
| author | Jan Cholasta <jcholast@redhat.com> | 2016-08-04 14:14:15 +0200 |
|---|---|---|
| committer | Jan Cholasta <jcholast@redhat.com> | 2016-08-04 14:20:06 +0200 |
| commit | 1a73477e1561b0a2a66852575010a136edc014a6 (patch) | |
| tree | cfd9e8f23ff721e25c90aa8f28b9b57af4145b2b /ipaclient/plugins | |
| parent | a42b456b91cb345e977c6f0febf5c30f15a954d3 (diff) | |
| download | freeipa-1a73477e1561b0a2a66852575010a136edc014a6.tar.gz freeipa-1a73477e1561b0a2a66852575010a136edc014a6.tar.xz freeipa-1a73477e1561b0a2a66852575010a136edc014a6.zip | |
vault: add missing salt option to vault_mod
The option was accidentally removed in commit
4b119e21a2f93ca16c5edf3d1058552b44feeaf8.
https://fedorahosted.org/freeipa/ticket/6154
Reviewed-By: Jan Cholasta <jcholast@redhat.com>
Diffstat (limited to 'ipaclient/plugins')
| -rw-r--r-- | ipaclient/plugins/vault.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaclient/plugins/vault.py b/ipaclient/plugins/vault.py index ed75a0e22..1e715fdb9 100644 --- a/ipaclient/plugins/vault.py +++ b/ipaclient/plugins/vault.py @@ -418,7 +418,7 @@ class vault_mod(Local): def get_options(self): for option in self.api.Command.vault_mod_internal.options(): - if option.name not in ('ipavaultsalt', 'version'): + if option.name != 'version': yield option for option in super(vault_mod, self).get_options(): yield option |
