From 9dfdf55034223e05c72e59239169be8cf315fc29 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Wed, 29 Jun 2011 15:09:29 -0400 Subject: In sudo labels we should use RunAs and not Run As. https://fedorahosted.org/freeipa/ticket/1328 --- ipalib/plugins/sudorule.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ipalib') diff --git a/ipalib/plugins/sudorule.py b/ipalib/plugins/sudorule.py index a1d05a815..55d2904f5 100644 --- a/ipalib/plugins/sudorule.py +++ b/ipalib/plugins/sudorule.py @@ -102,14 +102,14 @@ class sudorule(LDAPObject): ), StrEnum('ipasudorunasusercategory?', cli_name='runasusercat', - label=_('Run As User category'), - doc=_('Run As User category the rule applies to'), + label=_('RunAs User category'), + doc=_('RunAs User category the rule applies to'), values=(u'all', ), ), StrEnum('ipasudorunasgroupcategory?', cli_name='runasgroupcat', - label=_('Run As Group category'), - doc=_('Run As Group category the rule applies to'), + label=_('RunAs Group category'), + doc=_('RunAs Group category the rule applies to'), values=(u'all', ), ), Str('memberuser_user?', @@ -145,11 +145,11 @@ class sudorule(LDAPObject): flags=['no_create', 'no_update', 'no_search'], ), Str('ipasudorunas_user?', - label=_('Run As User'), + label=_('RunAs User'), flags=['no_create', 'no_update', 'no_search'], ), Str('ipasudorunas_group?', - label=_('Run As Group'), + label=_('RunAs Group'), flags=['no_create', 'no_update', 'no_search'], ), Str('externaluser?', -- cgit