summaryrefslogtreecommitdiffstats
path: root/ipaserver/plugins/certprofile.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipaserver/plugins/certprofile.py')
-rw-r--r--ipaserver/plugins/certprofile.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/ipaserver/plugins/certprofile.py b/ipaserver/plugins/certprofile.py
index 6f314e1a4..f44660774 100644
--- a/ipaserver/plugins/certprofile.py
+++ b/ipaserver/plugins/certprofile.py
@@ -122,6 +122,10 @@ class certprofile(LDAPObject):
label=_('Profile ID'),
doc=_('Profile ID for referring to this profile'),
),
+ Str('config',
+ label=_('Profile configuration'),
+ flags={'virtual_attribute', 'no_create', 'no_update', 'no_search'},
+ ),
Str('description',
required=True,
cli_name='desc',
@@ -195,12 +199,6 @@ class certprofile_find(LDAPSearch):
class certprofile_show(LDAPRetrieve):
__doc__ = _("Display the properties of a Certificate Profile.")
- has_output_params = LDAPRetrieve.has_output_params + (
- Str('config',
- label=_('Profile configuration'),
- ),
- )
-
takes_options = LDAPRetrieve.takes_options + (
Str('out?',
doc=_('Write profile configuration to file'),