diff options
-rw-r--r-- | ipaserver/plugins/radiusproxy.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ipaserver/plugins/radiusproxy.py b/ipaserver/plugins/radiusproxy.py index 5657e002c..3391b8aed 100644 --- a/ipaserver/plugins/radiusproxy.py +++ b/ipaserver/plugins/radiusproxy.py @@ -169,6 +169,14 @@ class radiusproxy_find(LDAPSearch): '%(count)d RADIUS proxy server matched', '%(count)d RADIUS proxy servers matched', 0 ) + def get_options(self): + for option in super(radiusproxy_find, self).get_options(): + if option.name == 'ipatokenradiussecret': + option = option.clone(flags={'no_option'}) + + yield option + + @register() class radiusproxy_show(LDAPRetrieve): __doc__ = _('Display information about a RADIUS proxy server.') |